From: Rafael Antognolli Date: Tue, 30 Apr 2019 20:34:06 +0000 (-0700) Subject: blorp: Add Tile Cache Flush for Unified Cache. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a99c67b690cf7f7b92c25b859719331c8a496f03;p=mesa.git blorp: Add Tile Cache Flush for Unified Cache. --- diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h index b4118162af3..3c18423ad3b 100644 --- a/src/intel/blorp/blorp_genX_exec.h +++ b/src/intel/blorp/blorp_genX_exec.h @@ -1519,6 +1519,9 @@ blorp_emit_surface_states(struct blorp_batch *batch, */ blorp_emit(batch, GENX(PIPE_CONTROL), pipe) { pipe.StateCacheInvalidationEnable = true; +#if GEN_GEN >= 12 + pipe.TileCacheFlushEnable = true; +#endif } } #endif