zink: add atomic image ops to the ms deleting pass

this otherwise results in nir validation errors

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

Fixes: 90cf8d14d6 ("zink: add a pass to strip out multisample storage image ops")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29383>
This commit is contained in:
Mike Blumenkrantz
2024-05-24 08:21:45 -04:00
committed by Marge Bot
parent 8e60f26016
commit bc29d2c9fc

View File

@@ -4974,6 +4974,8 @@ strip_tex_ms_instr(nir_builder *b, nir_instr *in, void *data)
break;
case nir_intrinsic_image_deref_store:
case nir_intrinsic_image_deref_load:
case nir_intrinsic_image_deref_atomic:
case nir_intrinsic_image_deref_atomic_swap:
break;
default:
return false;