You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- /* PASS */
-
- uniform ivec2 a;
- uniform ivec2 b;
-
- void main()
- {
- mat2 c;
-
- c = mat2(a, b);
-
- gl_Position = gl_Vertex;
- }
|