diff options
author | Brian <[email protected]> | 2007-09-10 16:29:23 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-10 16:29:23 -0600 |
commit | d56a3adc30c19c8f00cb7dc585e86babfd3a79a7 (patch) | |
tree | 38004b2d716a1383978ceca10ff5f93084d1a03b /src/mesa/pipe/p_state.h | |
parent | b2dfe2be6cc91c330e7fe21ea663cacfc220582d (diff) |
More work on vertex feedback / glRasterPos. Basic rasterpos works now.
Diffstat (limited to 'src/mesa/pipe/p_state.h')
-rw-r--r-- | src/mesa/pipe/p_state.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index cad96807df3..ccd40d39e66 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -371,5 +371,14 @@ struct pipe_vertex_element }; +/** + * Vertex feedback buffer + */ +struct pipe_feedback_buffer { + struct pipe_buffer_handle *buffer; + unsigned size; + unsigned start_offset; +}; + #endif |