ir3: Don't set saturation on flat.b

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10999

Signed-off-by: Karmjit Mahil <karmjit.mahil@igalia.com>
Reviewed-by: Job Noorman <jnoorman@igalia.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28935>
This commit is contained in:
Karmjit Mahil 2024-04-25 15:53:12 +01:00 committed by Marge Bot
parent 3b3df7b8a9
commit 858154b84e

View file

@ -609,8 +609,9 @@ is_sat_compatible(opc_t opc)
return false;
switch (opc) {
/* On a3xx and a6xx saturation doesn't work on bary.f */
/* On a3xx and a6xx saturation doesn't work on bary.f/flat.b */
case OPC_BARY_F:
case OPC_FLAT_B:
/* On a6xx saturation doesn't work on sel.* */
case OPC_SEL_B16:
case OPC_SEL_B32: