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>
(cherry picked from commit a7c8eab63d)
This commit is contained in:
Georg Lehmann 2024-07-26 22:20:47 +02:00 committed by Eric Engestrom
parent 989328728e
commit d7c994372e
2 changed files with 6 additions and 1 deletions

View file

@ -294,7 +294,7 @@
"description": "spirv: ignore more function param decorations",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "9b55dcca540ca0bc48dc52b25dc1a3b1cf84f861",
"notes": null

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: