From bb6d300b3a3878109bd07fbee241547ec0009ef7 Mon Sep 17 00:00:00 2001 From: Nanley Chery Date: Thu, 15 Sep 2022 15:22:37 -0700 Subject: [PATCH] Revert "iris: Add missed tile flush flag" This reverts commit 0523607ebb108d8c90bbda9c6564b66a0a6250e6. The issue that commit worked around seems to have been fixed as of commit 1c8b4940ebf ("iris: Emit flushes for push constant source buffers"). I could no longer reproduce it from that point onward with this revert applied. Reviewed-by: Lionel Landwerlin Part-of: --- src/gallium/drivers/iris/iris_pipe_control.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/drivers/iris/iris_pipe_control.c b/src/gallium/drivers/iris/iris_pipe_control.c index bb38282205d..a424320a8b6 100644 --- a/src/gallium/drivers/iris/iris_pipe_control.c +++ b/src/gallium/drivers/iris/iris_pipe_control.c @@ -411,8 +411,7 @@ iris_memory_barrier(struct pipe_context *ctx, unsigned flags) if (flags & (PIPE_BARRIER_TEXTURE | PIPE_BARRIER_FRAMEBUFFER)) { bits |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | - PIPE_CONTROL_RENDER_TARGET_FLUSH | - PIPE_CONTROL_TILE_CACHE_FLUSH; + PIPE_CONTROL_RENDER_TARGET_FLUSH; } iris_foreach_batch(ice, batch) {