summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-09-10 16:29:23 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-09-10 16:29:23 -0600
commitd56a3adc30c19c8f00cb7dc585e86babfd3a79a7 (patch)
tree38004b2d716a1383978ceca10ff5f93084d1a03b /src/mesa/pipe/softpipe/sp_state.h
parentb2dfe2be6cc91c330e7fe21ea663cacfc220582d (diff)
More work on vertex feedback / glRasterPos. Basic rasterpos works now.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state.h')
-rw-r--r--src/mesa/pipe/softpipe/sp_state.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state.h b/src/mesa/pipe/softpipe/sp_state.h
index 354580b2a5..f40ebe3e2b 100644
--- a/src/mesa/pipe/softpipe/sp_state.h
+++ b/src/mesa/pipe/softpipe/sp_state.h
@@ -59,6 +59,9 @@ void softpipe_set_constant_buffer(struct pipe_context *,
void softpipe_set_depth_test_state( struct pipe_context *,
const struct pipe_depth_state * );
+void softpipe_set_feedback_state( struct pipe_context *,
+ const struct pipe_feedback_state * );
+
void softpipe_set_fs_state( struct pipe_context *,
const struct pipe_shader_state * );
@@ -96,6 +99,12 @@ void softpipe_set_vertex_buffer(struct pipe_context *,
unsigned index,
const struct pipe_vertex_buffer *);
+void softpipe_set_feedback_buffer(struct pipe_context *,
+ uint index,
+ const struct pipe_feedback_buffer *);
+
+
+
void softpipe_update_derived( struct softpipe_context *softpipe );