summaryrefslogtreecommitdiff
path: root/src/glsl/tests/matrix-10.glsl
blob: 20b55180cbb1364c7513de741d99fcb883969370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 120
/* PASS */

uniform mat3 a;

void main()
{
    mat2 m;

    m = mat2(a);
    gl_Position = gl_Vertex;
}