mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
13 lines
120 B
GLSL
13 lines
120 B
GLSL
/* PASS */
|
|
|
|
uniform ivec2 a;
|
|
uniform ivec2 b;
|
|
|
|
void main()
|
|
{
|
|
mat2 c;
|
|
|
|
c = mat2(a, b);
|
|
|
|
gl_Position = gl_Vertex;
|
|
}
|