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_context.h | |
parent | b2dfe2be6cc91c330e7fe21ea663cacfc220582d (diff) |
More work on vertex feedback / glRasterPos. Basic rasterpos works now.
Diffstat (limited to 'src/mesa/pipe/p_context.h')
-rw-r--r-- | src/mesa/pipe/p_context.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mesa/pipe/p_context.h b/src/mesa/pipe/p_context.h index c9246e883ad..27a1128365e 100644 --- a/src/mesa/pipe/p_context.h +++ b/src/mesa/pipe/p_context.h @@ -106,6 +106,9 @@ struct pipe_context { void (*set_depth_state)( struct pipe_context *, const struct pipe_depth_state * ); + void (*set_feedback_state)( struct pipe_context *, + const struct pipe_feedback_state *); + void (*set_framebuffer_state)( struct pipe_context *, const struct pipe_framebuffer_state * ); @@ -154,13 +157,8 @@ struct pipe_context { */ void (*set_feedback_buffer)(struct pipe_context *, unsigned index, - struct pipe_vertex_buffer *); - - void (*set_feedback_element)(struct pipe_context *, - unsigned index, - const struct pipe_vertex_element *); + const struct pipe_feedback_buffer *); - /* * Surface functions * This might go away... |