mesa/tests/constructor-08.glsl
2010-03-26 16:47:06 -07:00

13 lines
122 B
GLSL

/* PASS */
uniform float a;
uniform float b;
void main()
{
ivec2 c;
c = ivec2(a, b);
gl_Position = gl_Vertex;
}