r300g: Cleanup from last few commits.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Thu, 14 Jan 2010 16:25:46 +0000 (08:25 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Thu, 14 Jan 2010 17:01:37 +0000 (09:01 -0800)
Strangely enough, the code solidified pretty quickly.

src/gallium/drivers/r300/r300_render.c

index 528741ab7c06650bb30a72971c0c724d59791477..710d850163f30265616a307fd3029fa2c4588b4a 100644 (file)
@@ -262,10 +262,6 @@ static struct pipe_buffer* r300_translate_elts(struct r300_context* r300,
     (void)u_index_translator(~0, *mode, *size, *count, PV_LAST, PV_LAST,
         &out_prim, &out_index_size, &out_nr, &out_translate);
 
-    debug_printf("r300: old mode %d, new mode %d\n", *mode, out_prim);
-    debug_printf("r300: old count %d, new count %d\n", *count, out_nr);
-    debug_printf("r300: old size %d, new size %d\n", *size, out_index_size);
-
     new_elts = screen->buffer_create(screen, 32,
                                      PIPE_BUFFER_USAGE_INDEX |
                                      PIPE_BUFFER_USAGE_CPU_WRITE |
@@ -298,6 +294,7 @@ void r300_draw_range_elements(struct pipe_context* pipe,
                               unsigned count)
 {
     struct r300_context* r300 = r300_context(pipe);
+    struct pipe_buffer* orgIndexBuffer = indexBuffer;
 
     if (!u_trim_pipe_prim(mode, &count)) {
         return;
@@ -316,7 +313,6 @@ void r300_draw_range_elements(struct pipe_context* pipe,
         return;
     }
 
-       struct pipe_buffer* orgIndexBuffer = indexBuffer;
     if (indexSize == 1) {
         indexBuffer = r300_translate_elts(r300, indexBuffer,
             &indexSize, &mode, &count);