glslang/Test/vk.relaxed.stagelink.0.2.frag
Malcolm Bechard b8338311ea fix cases where symbols in the tree didn't get updated during block merging
For GL_EXT_vulkan_glsl_relaxed. When merging the default uniform block,
there were cases where symbols in the tree wern't updated to match the
new block structure after merging blocks together.

This change traverses the symbol tree and updates any references to the
merged block.
2022-01-28 23:38:56 -05:00

10 lines
122 B
GLSL
Executable File

#version 460
vec4 TDOutputSwizzle(vec4 c)
{
return c.rgba;
}
uvec4 TDOutputSwizzle(uvec4 c)
{
return c.rgba;
}