From: Francisco Jerez Date: Thu, 22 Aug 2019 23:16:26 +0000 (-0700) Subject: intel/ir/gen12: Update assert in brw_stage_has_packed_dispatch(). X-Git-Tag: android-x86-9.0-r1~1170 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b0e69d115ef1b2eb69695d4052538c8cad84a0b8;p=android-x86%2Fexternal-mesa.git intel/ir/gen12: Update assert in brw_stage_has_packed_dispatch(). Confirmed no regressions after a full Piglit run on TGL with the brw_fs_test_dispatch_packing() test enabled. Reviewed-by: Kenneth Graunke --- diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index eb084448083..dd2de2094e7 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -1461,7 +1461,7 @@ brw_stage_has_packed_dispatch(ASSERTED const struct gen_device_info *devinfo, * to do a full test run with brw_fs_test_dispatch_packing() hooked up to * the NIR front-end before changing this assertion. */ - assert(devinfo->gen <= 11); + assert(devinfo->gen <= 12); switch (stage) { case MESA_SHADER_FRAGMENT: {