bgfx/3rdparty/glsl-optimizer/tests/vertex/opt-unusedvars-out.txt

9 lines
122 B
Text
Raw Normal View History

2012-04-03 23:30:07 -04:00
attribute vec4 myColor;
uniform mat4 mvp;
void main ()
{
gl_Position = (mvp * gl_Vertex);
gl_FrontColor = myColor;
}