From cc415f911f7bbba683e4724af4ab58d8cc9523ca Mon Sep 17 00:00:00 2001 From: Nanley Chery Date: Wed, 21 Aug 2019 16:43:26 -0700 Subject: [PATCH] intel/blorp: Assert against HiZ in surface states Avoid unexpected behavior if the caller happens to pass in a HiZ aux usage. Reviewed-by: Kenneth Graunke --- src/intel/blorp/blorp_genX_exec.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h index f47372f..cb2d253 100644 --- a/src/intel/blorp/blorp_genX_exec.h +++ b/src/intel/blorp/blorp_genX_exec.h @@ -1356,9 +1356,8 @@ blorp_emit_surface_state(struct blorp_batch *batch, } /* Blorp doesn't support HiZ in any of the blit or slow-clear paths */ + assert(surface->aux_usage != ISL_AUX_USAGE_HIZ); enum isl_aux_usage aux_usage = surface->aux_usage; - if (aux_usage == ISL_AUX_USAGE_HIZ) - aux_usage = ISL_AUX_USAGE_NONE; isl_channel_mask_t write_disable_mask = 0; if (is_render_target && GEN_GEN <= 5) { -- 2.7.4