mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 07:00:11 +01:00
12 lines
117 B
GLSL
12 lines
117 B
GLSL
#version 120
|
|
/* PASS */
|
|
|
|
uniform mat3 a;
|
|
|
|
void main()
|
|
{
|
|
mat2 m;
|
|
|
|
m = mat2(a);
|
|
gl_Position = gl_Vertex;
|
|
}
|