• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#version 120
2/* FAIL - matrix must be only parameter to matrix constructor */
3
4uniform mat2 a;
5uniform float x;
6
7void main()
8{
9  mat2 b;
10
11  b = mat2(a, x);
12
13  gl_Position = gl_Vertex;
14}
15