summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/hlsl.doLoop.frag
blob: 546b2c2ca76e6e69271bc6893f958485120aa4d7 (plain)
1
2
3
4
5
6
float4 PixelShaderFunction(float4 input) : COLOR0
{
    [unroll] do {} while (false);
    [unroll] do {;} while (false);
    do { return input; } while (input == input);
}