mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
b8338311ea
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.
10 lines
122 B
GLSL
Executable File
10 lines
122 B
GLSL
Executable File
#version 460
|
|
vec4 TDOutputSwizzle(vec4 c)
|
|
{
|
|
return c.rgba;
|
|
}
|
|
uvec4 TDOutputSwizzle(uvec4 c)
|
|
{
|
|
return c.rgba;
|
|
}
|