SPIRV-Cross/reference/shaders/asm/frag/unreachable.asm.frag
Chip Davis 5547b25afe Interleave undef values with constants and types.
Undef values may be of struct type and may be used in constants.
Therefore, they must be interleaved with constants and types.

Fixes the rest of the Vulkan CTS test
`dEQP-VK.spirv_assembly.instruction.compute.opundef.undefined_spec_constant_composite`.

(Please excuse the churn in the reference output; it's an inevitable
result of this change.)
2022-11-20 02:08:37 -08:00

29 lines
393 B
GLSL

#version 450
vec4 _21;
layout(location = 0) flat in int counter;
layout(location = 0) out vec4 FragColor;
void main()
{
vec4 _24;
_24 = _21;
vec4 _33;
for (;;)
{
if (counter == 10)
{
_33 = vec4(10.0);
break;
}
else
{
_33 = vec4(30.0);
break;
}
}
FragColor = _33;
}