From 529d867207a7f14364d9453cc2beaa4da4ea4752 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 6 Feb 2011 21:09:38 +0100 Subject: [PATCH] r300g: do not flush the uploader We don't have to unmap and recreate the upload buffer when a flush occurs. This should also prevent buffer allocations from failing. --- src/gallium/drivers/r300/r300_flush.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gallium/drivers/r300/r300_flush.c b/src/gallium/drivers/r300/r300_flush.c index b250532ba92..986ea5ff35a 100644 --- a/src/gallium/drivers/r300/r300_flush.c +++ b/src/gallium/drivers/r300/r300_flush.c @@ -40,9 +40,6 @@ static void r300_flush(struct pipe_context* pipe, struct r300_atom *atom; struct r300_fence **rfence = (struct r300_fence**)fence; - u_upload_flush(r300->upload_vb); - u_upload_flush(r300->upload_ib); - if (r300->draw && !r300->draw_vbo_locked) r300_draw_flush_vbuf(r300); -- 2.30.2