brw: always ensure coarse pixel is disabled on Gfx9

No HW support there.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Ivan Briano <ivan.briano@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36457>
This commit is contained in:
Lionel Landwerlin 2025-05-27 12:11:52 +03:00 committed by Marge Bot
parent aa6810b706
commit 60932e8fae

View file

@ -1058,7 +1058,8 @@ brw_nir_populate_wm_prog_data(nir_shader *shader,
prog_data->sample_shading ||
prog_data->uses_sample_mask ||
(prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF) ||
prog_data->computed_stencil) {
prog_data->computed_stencil ||
devinfo->ver < 11) {
prog_data->coarse_pixel_dispatch = INTEL_NEVER;
}