mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 11:20:11 +01:00
15 lines
186 B
Text
15 lines
186 B
Text
|
|
#version 120
|
||
|
|
/* FAIL - matrix must be only parameter to matrix constructor */
|
||
|
|
|
||
|
|
uniform mat2 a;
|
||
|
|
uniform float x;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
mat2 b;
|
||
|
|
|
||
|
|
b = mat2(a, x);
|
||
|
|
|
||
|
|
gl_Position = gl_Vertex;
|
||
|
|
}
|