mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
14 lines
164 B
Text
14 lines
164 B
Text
|
|
/* 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;
|
||
|
|
}
|