Files
third_party_mesa3d/tests/constructor-07.glsl

14 lines
120 B
Plaintext
Raw Normal View History

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