From: Chris Wilson Date: Tue, 22 Feb 2011 11:18:25 +0000 (+0000) Subject: i965: Zero the offset into the vbo when uploading non-interleaved X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3377faffcdc7227bd27381894c87c7600547744f;p=profile%2Fivi%2Fmesa.git i965: Zero the offset into the vbo when uploading non-interleaved Fixes regression from 559435d9152acc7162e4e60aae6591c7c6c8274b. 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 b15c05a..6ea877b 100644 --- a/src/mesa/drivers/dri/i965/brw_draw_upload.c +++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c @@ -454,6 +454,7 @@ static void brw_prepare_vertices(struct brw_context *brw) upload[i], &brw->vb.buffers[j], upload[i]->element_size); upload[i]->buffer = j++; + upload[i]->offset = 0; } /* can we simply extend the current vb? */