mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
intel/brw/xe2+: Allow dual-source blending in SIMD16 mode.
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28306>
This commit is contained in:
parent
762ec3fd59
commit
af8b9af700
1 changed files with 6 additions and 2 deletions
|
|
@ -654,8 +654,12 @@ fs_visitor::emit_fb_writes()
|
|||
* dispatch on ICL due some unknown reasons, see
|
||||
* https://gitlab.freedesktop.org/mesa/mesa/-/issues/2183
|
||||
*/
|
||||
limit_dispatch_width(8, "Dual source blending unsupported "
|
||||
"in SIMD16 and SIMD32 modes.\n");
|
||||
if (devinfo->ver >= 20)
|
||||
limit_dispatch_width(16, "Dual source blending unsupported "
|
||||
"in SIMD32 mode.\n");
|
||||
else
|
||||
limit_dispatch_width(8, "Dual source blending unsupported "
|
||||
"in SIMD16 and SIMD32 modes.\n");
|
||||
}
|
||||
|
||||
do_emit_fb_writes(key->nr_color_regions, replicate_alpha);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue