spirv: ignore more function param decorations

These caused log spam during vk-cts.

Fixes: 9b55dcca54 ("spirv: initial parsing of function parameter decorations")

Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30391>
This commit is contained in:
Georg Lehmann
2024-07-26 22:20:47 +02:00
committed by Marge Bot
parent c3b25dd357
commit a7c8eab63d

View File

@@ -123,7 +123,12 @@ function_parameter_decoration_cb(struct vtn_builder *b, struct vtn_value *val,
break;
/* ignore for now */
case SpvDecorationAliased:
case SpvDecorationAliasedPointer:
case SpvDecorationAlignment:
case SpvDecorationRelaxedPrecision:
case SpvDecorationRestrict:
case SpvDecorationRestrictPointer:
break;
default: