Revert "radeon/r300: no need to flush the cmdbuf when changing scissors state in...
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_common.c
index 3b4366aa61ca6818a8fa250942d425423f86c2ef..184287aa44cab5ceb0339120d688edbee85f1ae8 100644 (file)
@@ -257,9 +257,7 @@ void radeonScissor(GLcontext* ctx, GLint x, GLint y, GLsizei w, GLsizei h)
        radeonContextPtr radeon = RADEON_CONTEXT(ctx);
        if (ctx->Scissor.Enabled) {
                /* We don't pipeline cliprect changes */
-               if (!radeon->radeonScreen->kernel_mm) {
-                       radeon_firevertices(radeon);
-               }
+               radeon_firevertices(radeon);
                radeonUpdateScissor(ctx);
        }
 }