summaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo/vbo_rebase.c
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2011-12-09 17:00:23 +0100
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>2011-12-15 18:50:44 +0100
commit14bb957b996dcc5392b8fa589bd3ffa5c55cb6b4 (patch)
tree1dce64c3156c0df8ab638050dcc62365b6fb8197 /src/mesa/vbo/vbo_rebase.c
parent3baaa1bbd72f67f6bc7374b2b6a16b0322006a65 (diff)
downloadexternal_mesa3d-14bb957b996dcc5392b8fa589bd3ffa5c55cb6b4.zip
external_mesa3d-14bb957b996dcc5392b8fa589bd3ffa5c55cb6b4.tar.gz
external_mesa3d-14bb957b996dcc5392b8fa589bd3ffa5c55cb6b4.tar.bz2
mesa: implement DrawTransformFeedback from ARB_transform_feedback2
It's like DrawArrays, but the count is taken from a transform feedback object. This removes DrawTransformFeedback from dd_function_table and adds the same function to GLvertexformat (with the function parameters matching GL). The vbo_draw_func callback has a new parameter "struct gl_transform_feedback_object *tfb_vertcount". The rest of the code just validates states and forwards the transform feedback object into vbo_draw_func.
Diffstat (limited to 'src/mesa/vbo/vbo_rebase.c')
-rw-r--r--src/mesa/vbo/vbo_rebase.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_rebase.c b/src/mesa/vbo/vbo_rebase.c
index 97c8d12..597a8f4 100644
--- a/src/mesa/vbo/vbo_rebase.c
+++ b/src/mesa/vbo/vbo_rebase.c
@@ -233,7 +233,8 @@ void vbo_rebase_prims( struct gl_context *ctx,
ib,
GL_TRUE,
0,
- max_index - min_index );
+ max_index - min_index,
+ NULL );
if (tmp_indices)
free(tmp_indices);