mesa/src/glsl/tests/constructor-08.glsl

13 lines
122 B
GLSL

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