Files
third_party_mesa3d/tests/constructor-08.glsl

14 lines
122 B
Plaintext
Raw Normal View History

2010-03-26 16:41:43 -07:00
/* PASS */
uniform float a;
uniform float b;
void main()
{
ivec2 c;
c = ivec2(a, b);
gl_Position = gl_Vertex;
}