You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixes a new validation failure in a UniformId test (#3301)
A recent spirv-val change requires that OpDecorateId IDs are
well-ordered, which means that the decoration operand ID cannot be the
same as the decoration target ID. See:
KhronosGroup/SPIRV-Tools#6227
This leads to the failure:
```
error: line 6: Parameter <ID> '2[%uint_0]' must appear earlier in the binary than the target
OpDecorateId %uint_0 UniformId %uint_0
```
The fix is to use a different ID for the decoration operand and the
decoration target.
Original commit:
KhronosGroup/SPIRV-LLVM-Translator@fc5873ee760c333
0 commit comments