From: Chris Wilson Date: Tue, 22 Feb 2011 11:19:32 +0000 (+0000) Subject: i965: Reinstate max-index paranoia X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4cbd2b312d53a50603e2cda925711bc9def4517;p=profile%2Fivi%2Fmesa.git i965: Reinstate max-index paranoia Don't trust the applications not to reference beyond the end of the vertex buffers. Signed-off-by: Chris Wilson --- diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c index 6ea877b..4520749 100644 --- a/src/mesa/drivers/dri/i965/brw_draw_upload.c +++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c @@ -550,7 +550,7 @@ static void brw_emit_vertices(struct brw_context *brw) if (intel->gen >= 5) { OUT_RELOC(buffer->bo, I915_GEM_DOMAIN_VERTEX, 0, buffer->bo->size - 1); } else - OUT_BATCH(0); + OUT_BATCH(buffer->bo->size / buffer->stride); OUT_BATCH(0); /* Instance data step rate */ brw->vb.current_buffers[i].handle = buffer->bo->handle;