From 60932e8faea172e378ebbb85bd4e05822fd10c98 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Tue, 27 May 2025 12:11:52 +0300 Subject: [PATCH] brw: always ensure coarse pixel is disabled on Gfx9 No HW support there. Signed-off-by: Lionel Landwerlin Reviewed-by: Ivan Briano Part-of: --- src/intel/compiler/brw_compile_fs.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/intel/compiler/brw_compile_fs.cpp b/src/intel/compiler/brw_compile_fs.cpp index 300c5e7f6b0..9706fb56fac 100644 --- a/src/intel/compiler/brw_compile_fs.cpp +++ b/src/intel/compiler/brw_compile_fs.cpp @@ -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; }