bgfx/3rdparty/glsl-optimizer/tests/fragment/bug-global-init-out.txt

10 lines
122 B
Text
Raw Normal View History

2012-04-03 23:30:07 -04:00
float otherValue;
uniform float value;
//;
void main ()
{
otherValue = log (value);
gl_FragColor = vec4(otherValue);
}