bgfx/3rdparty/glsl-optimizer/tests/fragment/opt-deadcode-out.txt
Branimir Karadzic dee3fe5266 Initial commit.
2012-04-03 20:30:07 -07:00

7 lines
158 B
Text

void main ()
{
float arrused[3];
arrused[0] = (gl_FragCoord.x * 4.0);
gl_FragColor = vec4((((gl_FragCoord.x * 2.0) + gl_FragCoord.x) + arrused[0]));
}