freedreno: Fix spurious flush
authorRob Clark <robdclark@chromium.org>
Thu, 22 Oct 2020 21:43:35 +0000 (14:43 -0700)
committerMarge Bot <eric+marge@anholt.net>
Tue, 10 Nov 2020 17:58:44 +0000 (17:58 +0000)
Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7342>

src/gallium/drivers/freedreno/freedreno_state.c

index 9e1c1a1..5a3df1f 100644 (file)
@@ -220,13 +220,20 @@ fd_set_framebuffer_state(struct pipe_context *pctx,
                framebuffer->width, framebuffer->height,
                framebuffer->layers, framebuffer->samples);
 
-       fd_context_switch_from(ctx);
-
        cso = &ctx->framebuffer;
 
        if (util_framebuffer_state_equal(cso, framebuffer))
                return;
 
+       /* Do this *after* checking that the framebuffer state is actually
+        * changing.  In the fd_blitter_clear() path, we get a pfb update
+        * to restore the current pfb state, which should not trigger us
+        * to flush (as that can cause the batch to be freed at a point
+        * before fd_clear() returns, but after the point where it expects
+        * flushes to potentially happen.
+        */
+       fd_context_switch_from(ctx);
+
        util_copy_framebuffer_state(cso, framebuffer);
 
        cso->samples = util_framebuffer_get_num_samples(cso);