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 <kenneth@whitecape.org>
This commit is contained in:
Francisco Jerez
2019-08-22 16:16:26 -07:00
parent ca7b6fd392
commit b0e69d115e

View File

@@ -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 * to do a full test run with brw_fs_test_dispatch_packing() hooked up to
* the NIR front-end before changing this assertion. * the NIR front-end before changing this assertion.
*/ */
assert(devinfo->gen <= 11); assert(devinfo->gen <= 12);
switch (stage) { switch (stage) {
case MESA_SHADER_FRAGMENT: { case MESA_SHADER_FRAGMENT: {