glslang/Test/hlsl.whileLoop.frag

8 lines
179 B
GLSL
Raw Permalink Normal View History

float4 PixelShaderFunction(float4 input) : COLOR0
{
2016-10-21 22:43:38 +00:00
while (any(input != input)) { return input; }
while (false) ;
[unroll] while (false) { }
while ((false)) { }
}