mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02: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> (cherry picked from commita7c8eab63d)
This commit is contained in:
parent
989328728e
commit
d7c994372e
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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