From: Corbin Simpson Date: Thu, 28 Jan 2010 09:28:59 +0000 (-0800) Subject: r300g: Fix bizarre half-flushes with immd mode. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=12f97d9c09dee7fffe073c943fd8428db4362e0c;p=mesa.git r300g: Fix bizarre half-flushes with immd mode. --- diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 354f3bb921d..bcb37071491 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -168,6 +168,8 @@ static void r300_emit_draw_arrays_immediate(struct r300_context *r300, } } + r300_emit_dirty_state(r300); + BEGIN_CS(10 + count * vertex_size); OUT_CS_REG(R300_GA_COLOR_CONTROL, r300_provoking_vertex_fixes(r300, mode)); @@ -419,7 +421,6 @@ void r300_draw_arrays(struct pipe_context* pipe, unsigned mode, r300_emit_buffer_validate(r300); if (immd_is_good_idea(r300, count)) { - r300_emit_dirty_state(r300); r300_emit_draw_arrays_immediate(r300, mode, start, count); } else { if (!r300_setup_vertex_buffers(r300)) {