diff options
author | Chris Wilson <[email protected]> | 2011-03-01 15:57:42 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2011-03-01 16:33:49 +0000 |
commit | 9fa380ccdcf987430b9bff8e5216869e05b0aaea (patch) | |
tree | 13ae9b16157c69cb3d47a75b5a54ff2631d04277 /src | |
parent | 69b3f24658b74f15b622adda6464a6fcb87f4ee6 (diff) |
i965: Undo 'continuation of vb packets'
This breaks nexuiz for unknown reason; disable until a true fix can be
found.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_draw_upload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c index baf35a6a50a..1e129f98e0c 100644 --- a/src/mesa/drivers/dri/i965/brw_draw_upload.c +++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c @@ -475,7 +475,7 @@ static void brw_prepare_vertices(struct brw_context *brw) } /* can we simply extend the current vb? */ - if (j == brw->vb.nr_current_buffers) { + if (0 && j == brw->vb.nr_current_buffers) { int delta = 0; for (i = 0; i < j; i++) { int d; |