bgfx/3rdparty/glslang/Test/hlsl.doLoop.frag
Branimir Karadžić 4ee3b81c61 Updated glslang.
2017-04-22 00:26:44 -07:00

10 lines
325 B
JavaScript

float4 PixelShaderFunction(float input) : COLOR0
{
[unroll] do {} while (false);
[unroll] do {;} while (false);
do { return (float4)input; } while (input > 2.0);
do ++input; while (input < 10.0);
do while (++input < 10.0); while (++input < 10.0); // nest while inside do-while
return (float4)input;
}