r300g: Silence unused variable warnings.
authorVinson Lee <vlee@vmware.com>
Sat, 9 Jan 2010 05:43:54 +0000 (21:43 -0800)
committerVinson Lee <vlee@vmware.com>
Sat, 9 Jan 2010 05:43:54 +0000 (21:43 -0800)
src/gallium/drivers/r300/r300_flush.c
src/gallium/drivers/r300/r300_state_derived.c

index 14a0824..4282357 100644 (file)
@@ -39,6 +39,7 @@ static void r300_flush(struct pipe_context* pipe,
     struct r300_query *query;
 
     CS_LOCALS(r300);
+    (void) cs_count;
     /* We probably need to flush Draw, but we may have been called from
      * within Draw. This feels kludgy, but it might be the best thing.
      *
index 7166694..55430a9 100644 (file)
@@ -464,7 +464,7 @@ static void r300_update_rs_block(struct r300_context* r300,
 /* Update the vertex format. */
 static void r300_update_derived_shader_state(struct r300_context* r300)
 {
-    struct r300_screen* r300screen = r300_screen(r300->context.screen);
+    /* struct r300_screen* r300screen = r300_screen(r300->context.screen); */
     struct r300_vertex_info* vformat;
     struct r300_rs_block* rs_block;
     int i;