diff options
author | Roland Scheidegger <[email protected]> | 2010-03-01 18:42:47 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-03-01 18:42:47 +0100 |
commit | 8397c80646364eb20d7e83304b55e6f3ee353b49 (patch) | |
tree | 972682355882dd8487c65f824384173b816998ec /src/gallium/docs/source/cso | |
parent | 49d3f662b60be08328e7c1dc381d07f50c384601 (diff) |
gallium/docs: document new vertex element cso interface
Diffstat (limited to 'src/gallium/docs/source/cso')
-rw-r--r-- | src/gallium/docs/source/cso/velems.rst | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gallium/docs/source/cso/velems.rst b/src/gallium/docs/source/cso/velems.rst new file mode 100644 index 00000000000..8e758fae103 --- /dev/null +++ b/src/gallium/docs/source/cso/velems.rst @@ -0,0 +1,24 @@ +.. _vertex,elements + +Vertex Elements +=============== + +This state controls format etc. of the input attributes contained +in the pipe_vertex_buffer(s). There's one pipe_vertex_element array member +for each input attribute. + +Members +------- + +src_offset + The byte offset of the attribute in the buffer given by + vertex_buffer_index for the first vertex. +instance_divisor + The instance data rate divisor, used for instancing. + 0 means this is per-vertex data, n means per-instance data used for + n consecutive instances (n > 0). +vertex_buffer_index + The vertex buffer this attribute lives in. Several attributes may + live in the same vertex buffer. +src_format + The format of the attribute data. One of the PIPE_FORMAT tokens. |