• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#version 130
2/* FAIL - attribute cannot have array type in GLSL 1.30 */
3attribute vec4 i[10];
4
5void main()
6{
7  gl_Position = vec4(1.0);
8}
9