Mesa (master): r300g: Cleanup from last few commits.

Corbin Simpson csimpson at kemper.freedesktop.org
Thu Jan 14 17:02:39 UTC 2010


Module: Mesa
Branch: master
Commit: 1bc77e9931a248b74e0ef6b6aa2f4c5b2d1a2ca3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1bc77e9931a248b74e0ef6b6aa2f4c5b2d1a2ca3

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Thu Jan 14 08:25:46 2010 -0800

r300g: Cleanup from last few commits.

Strangely enough, the code solidified pretty quickly.

---

 src/gallium/drivers/r300/r300_render.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c
index 528741a..710d850 100644
--- a/src/gallium/drivers/r300/r300_render.c
+++ b/src/gallium/drivers/r300/r300_render.c
@@ -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);




More information about the mesa-commit mailing list