From: Vinson Lee Date: Mon, 14 Feb 2011 18:47:58 +0000 (-0800) Subject: r300g: Remove redundant initialization. X-Git-Tag: 062012170305~7232 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d123959ff75b2a83e02f4594f3e072c31c7fd8d9;p=profile%2Fivi%2Fmesa.git r300g: Remove redundant initialization. Remove redundant initialization from commit 3b01b52bd78e3d2fc857feacebd815a5fae00c94 noticed by tstellar. --- diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index 9c3a5e8..6ded868 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -815,7 +815,7 @@ void r300_emit_vertex_arrays(struct r300_context* r300, int offset, boolean inde unsigned vertex_array_count = r300->velems->count; unsigned packet_size = (vertex_array_count * 3 + 1) / 2; struct pipe_vertex_buffer *vb1, *vb2; - unsigned *hw_format_size = r300->velems->format_size; + unsigned *hw_format_size; unsigned size1, size2; CS_LOCALS(r300);