From 4bc4da01f4478d3bbfb7f27fcc896d6220fa4a47 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Wed, 29 Jun 2022 00:41:52 -0700 Subject: [PATCH] intel/brw: Allow xe2 in brw_stage_has_packed_dispatch() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jordan Justen Reviewed-by: José Roberto de Souza Part-of: --- src/intel/compiler/brw_compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index c8e6f05c38f..a7d8cb2dcfc 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -1645,7 +1645,7 @@ brw_stage_has_packed_dispatch(ASSERTED const struct intel_device_info *devinfo, * enabled by setting the macro below to true. */ #define ENABLE_FS_TEST_DISPATCH_PACKING false - assert(devinfo->ver <= 12); + assert(devinfo->ver <= 20); switch (stage) { case MESA_SHADER_FRAGMENT: {