summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe/p_state.h
diff options
context:
space:
mode:
authorBrian <[email protected]>2007-09-10 16:29:23 -0600
committerBrian <[email protected]>2007-09-10 16:29:23 -0600
commitd56a3adc30c19c8f00cb7dc585e86babfd3a79a7 (patch)
tree38004b2d716a1383978ceca10ff5f93084d1a03b /src/mesa/pipe/p_state.h
parentb2dfe2be6cc91c330e7fe21ea663cacfc220582d (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.h9
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