OSDN Git Service

i965: Mark brw_draw_prims tfb_vertcount parameter as unused.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 27 May 2013 18:41:21 +0000 (11:41 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 31 Oct 2013 18:04:37 +0000 (11:04 -0700)
Renaming it makes it obvious that it isn't used, and the assertion
verifies that the VBO module never passes us such an object.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_draw.c
src/mesa/drivers/dri/i965/brw_draw.h

index 0acd089..7b33b76 100644 (file)
@@ -463,11 +463,13 @@ void brw_draw_prims( struct gl_context *ctx,
                     GLboolean index_bounds_valid,
                     GLuint min_index,
                     GLuint max_index,
-                    struct gl_transform_feedback_object *tfb_vertcount )
+                    struct gl_transform_feedback_object *unused_tfb_object)
 {
    struct brw_context *brw = brw_context(ctx);
    const struct gl_client_array **arrays = ctx->Array._DrawArrays;
 
+   assert(unused_tfb_object == NULL);
+
    if (!_mesa_check_conditional_render(ctx))
       return;
 
index aac375f..fb96813 100644 (file)
@@ -41,7 +41,7 @@ void brw_draw_prims( struct gl_context *ctx,
                     GLboolean index_bounds_valid,
                     GLuint min_index,
                     GLuint max_index,
-                    struct gl_transform_feedback_object *tfb_vertcount );
+                    struct gl_transform_feedback_object *unused_tfb_object);
 
 void brw_draw_init( struct brw_context *brw );
 void brw_draw_destroy( struct brw_context *brw );