mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 16:48:07 +02:00
iris: Enable simpleFloatBlendEnable on Xe3+
Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32739>
This commit is contained in:
parent
046b8717af
commit
0b462c8b9e
1 changed files with 3 additions and 0 deletions
|
|
@ -1773,6 +1773,9 @@ iris_create_blend_state(struct pipe_context *ctx,
|
|||
be.WriteDisableGreen = !(rt->colormask & PIPE_MASK_G);
|
||||
be.WriteDisableBlue = !(rt->colormask & PIPE_MASK_B);
|
||||
be.WriteDisableAlpha = !(rt->colormask & PIPE_MASK_A);
|
||||
#if GFX_VER >= 30
|
||||
be.SimpleFloatBlendEnable = true;
|
||||
#endif
|
||||
}
|
||||
blend_entry += GENX(BLEND_STATE_ENTRY_length);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue