summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2011-02-22 11:18:25 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2011-02-22 11:24:34 +0000
commit3377faffcdc7227bd27381894c87c7600547744f (patch)
tree40ec404f321d34be0580f06fc24309728d83e881 /src/mesa/drivers
parent94ccc31ba4f64ac480137fd90f1ded44d2072f6e (diff)
i965: Zero the offset into the vbo when uploading non-interleaved
Fixes regression from 559435d9152acc7162e4e60aae6591c7c6c8274b. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/i965/brw_draw_upload.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c
index b15c05a7ad..6ea877bfbc 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? */