diff --git a/src/intel/compiler/brw/brw_compile_fs.cpp b/src/intel/compiler/brw/brw_compile_fs.cpp index 7517db28b2a..eb20c253831 100644 --- a/src/intel/compiler/brw/brw_compile_fs.cpp +++ b/src/intel/compiler/brw/brw_compile_fs.cpp @@ -166,12 +166,8 @@ brw_emit_fb_writes(brw_shader &s) * dispatch on ICL due some unknown reasons, see * https://gitlab.freedesktop.org/mesa/mesa/-/issues/2183 */ - if (devinfo->ver >= 20) - s.limit_dispatch_width(16, "Dual source blending unsupported " - "in SIMD32 mode.\n"); - else - s.limit_dispatch_width(8, "Dual source blending unsupported " - "in SIMD16 and SIMD32 modes.\n"); + s.limit_dispatch_width(8, "Dual source blending unsupported " + "in SIMD16 and SIMD32 modes.\n"); } brw_do_emit_fb_writes(s, key->nr_color_regions, replicate_alpha);