From: Nicolai Hähnle Date: Sat, 3 Oct 2009 15:49:16 +0000 (+0200) Subject: r300g: Remove an unnecessarily created pipe buffer (and thus fix a leak) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26df8af4fe4173eb52132dc63ee789b80a7a4db2;p=mesa.git r300g: Remove an unnecessarily created pipe buffer (and thus fix a leak) Signed-off-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 69d162324a9..ca44e0f6615 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -223,13 +223,6 @@ static void r300_render_draw(struct vbuf_render* render, r300_prepare_render(r300render, count); - /* Send our indices into an index buffer. */ - index_buffer = pipe_buffer_create(screen, 64, PIPE_BUFFER_USAGE_VERTEX, - count * 2); - if (!index_buffer) { - return; - } - BEGIN_CS(2 + (count+1)/2); OUT_CS_PKT3(R300_PACKET3_3D_DRAW_INDX_2, (count+1)/2); OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (count << 16) |