From 1bc77e9931a248b74e0ef6b6aa2f4c5b2d1a2ca3 Mon Sep 17 00:00:00 2001 From: Corbin Simpson Date: Thu, 14 Jan 2010 08:25:46 -0800 Subject: r300g: Cleanup from last few commits. Strangely enough, the code solidified pretty quickly. --- src/gallium/drivers/r300/r300_render.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 528741ab7c..710d850163 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); -- cgit v1.2.3