From b01d76027d39a24709185b5b6b7377806ca9457c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tapani=20P=C3=A4lli?= Date: Thu, 19 Sep 2024 15:00:43 +0300 Subject: [PATCH] blorp: assert that color depth is not 96 for Wa_16021021469 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/blorp/blorp_genX_exec_brw.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/intel/blorp/blorp_genX_exec_brw.h b/src/intel/blorp/blorp_genX_exec_brw.h index 801550e5fee..97a549a57e3 100644 --- a/src/intel/blorp/blorp_genX_exec_brw.h +++ b/src/intel/blorp/blorp_genX_exec_brw.h @@ -2073,6 +2073,10 @@ blorp_xy_fast_color_blit(struct blorp_batch *batch, struct isl_extent3d dst_align = isl_get_image_alignment(dst_surf); #endif +#if INTEL_NEEDS_WA_16021021469 + assert(fmtl->bpb != 96); +#endif + blorp_emit(batch, GENX(XY_FAST_COLOR_BLT), blt) { blt.ColorDepth = xy_color_depth(fmtl);