mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
spirv: Like Uniform, do nothing for UniformId
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
b4eff83180
commit
61de825e11
2 changed files with 3 additions and 0 deletions
|
|
@ -751,6 +751,7 @@ struct_member_decoration_cb(struct vtn_builder *b,
|
|||
switch (dec->decoration) {
|
||||
case SpvDecorationRelaxedPrecision:
|
||||
case SpvDecorationUniform:
|
||||
case SpvDecorationUniformId:
|
||||
break; /* FIXME: Do nothing with this for now. */
|
||||
case SpvDecorationNonWritable:
|
||||
vtn_handle_access_qualifier(b, ctx->type, member, ACCESS_NON_WRITEABLE);
|
||||
|
|
@ -980,6 +981,7 @@ type_decoration_cb(struct vtn_builder *b,
|
|||
case SpvDecorationNonWritable:
|
||||
case SpvDecorationNonReadable:
|
||||
case SpvDecorationUniform:
|
||||
case SpvDecorationUniformId:
|
||||
case SpvDecorationLocation:
|
||||
case SpvDecorationComponent:
|
||||
case SpvDecorationOffset:
|
||||
|
|
|
|||
|
|
@ -1501,6 +1501,7 @@ apply_var_decoration(struct vtn_builder *b,
|
|||
case SpvDecorationMatrixStride:
|
||||
case SpvDecorationAliased:
|
||||
case SpvDecorationUniform:
|
||||
case SpvDecorationUniformId:
|
||||
case SpvDecorationLinkageAttributes:
|
||||
break; /* Do nothing with these here */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue