From: Marek Olšák Date: Sat, 6 Mar 2010 18:35:10 +0000 (+0100) Subject: r300g: clamp vertex max index according to currently bound buffers X-Git-Tag: 062012170305~14085^2~44^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c37a20416d681a3fea42a1a2ce907eb8e11ba795;p=profile%2Fivi%2Fmesa.git r300g: clamp vertex max index according to currently bound buffers --- diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 6c89102..073664f 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -278,7 +278,7 @@ static void r300_emit_draw_elements(struct r300_context *r300, DBG(r300, DBG_DRAW, "r300: Indexbuf of %u indices, min %u max %u\n", count, minIndex, maxIndex); - maxIndex = MIN2(maxIndex, ((1 << 24) - 1)); + maxIndex = MIN2(maxIndex, r300->vertex_buffer_max_index); if (alt_num_verts) { BEGIN_CS(16);