mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 08:30:10 +01:00
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:
parent
c3b25dd357
commit
a7c8eab63d
1 changed files with 5 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue