Files
third_party_mesa3d/tests/constructor-05.glsl
2010-03-26 16:47:06 -07:00

14 lines
164 B
GLSL

/* FAIL - too few components supplied to constructor */
uniform vec2 a;
uniform float x;
void main()
{
mat2 b;
b = mat2(a, x);
gl_Position = gl_Vertex;
}