From e7ea5e500f6e1ca92be52735e85ae88e9f3069ef Mon Sep 17 00:00:00 2001 From: Felix DeGrood Date: Mon, 12 Apr 2021 09:15:17 -0700 Subject: [PATCH] intel/blorp: remove tile flush from emit surface state Tile cache flush not required when emitting new surface state. Reviewed-by: Kenneth Graunke Part-of: --- src/intel/blorp/blorp_genX_exec.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h index 17fa46790d6..e208ec8fc6b 100644 --- a/src/intel/blorp/blorp_genX_exec.h +++ b/src/intel/blorp/blorp_genX_exec.h @@ -1591,9 +1591,6 @@ blorp_emit_surface_states(struct blorp_batch *batch, */ blorp_emit(batch, GENX(PIPE_CONTROL), pipe) { pipe.StateCacheInvalidationEnable = true; -#if GFX_VER >= 12 - pipe.TileCacheFlushEnable = true; -#endif } } #endif