diff options
author | Michal Krol <[email protected]> | 2009-12-23 19:37:18 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-23 19:37:18 +0100 |
commit | d0b55120beb4848be5e7ef24f0301f8397baa8be (patch) | |
tree | 5cacf122776bc77678f3ee8a78d121bd3cca709e /src/gallium/include/pipe/p_state.h | |
parent | b5a408bae518ededbb871d113dab89f3e15bfb45 (diff) |
gallium: Add interfaces needed for instanced drawing.
Diffstat (limited to 'src/gallium/include/pipe/p_state.h')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 60e96b98deb..4d38bbcc326 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -364,6 +364,7 @@ struct pipe_vertex_buffer unsigned stride; /**< stride to same attrib in next vertex, in bytes */ unsigned max_index; /**< number of vertices in this buffer */ unsigned buffer_offset; /**< offset to start of data in buffer, in bytes */ + unsigned instance_divisor; /**< instance data rate divisor, 0 means per-vertex data */ struct pipe_buffer *buffer; /**< the actual buffer */ }; |