• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* FAIL - cannot construct a matrix from a matrix in GLSL 1.10 */
2
3uniform mat2 a;
4
5void main()
6{
7  mat2 b;
8
9  b = mat2(a);
10
11  gl_Position = gl_Vertex;
12}
13