mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-14 22:01:04 +00:00
9 lines
247 B
GLSL
9 lines
247 B
GLSL
float4 PixelShaderFunction(float4 input) : COLOR0
|
|
{
|
|
for (;;) ;
|
|
for (++input; ; ) ;
|
|
[unroll] for (; input != input; ) {}
|
|
for (; input != input; ) { return -input; }
|
|
for (--input; input != input; input += 2) { return -input; }
|
|
}
|