From: Marek Olšák Date: Sun, 6 Feb 2011 20:09:38 +0000 (+0100) Subject: r300g: do not flush the uploader X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=529d867207a7f14364d9453cc2beaa4da4ea4752;p=mesa.git 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. --- 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);