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