Clone of mesa.
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.

attribute-10.glsl 138B

12345678
  1. #version 120
  2. /* FAIL - attribute cannot have array type in GLSL 1.20 */
  3. attribute vec4 i[10];
  4. void main()
  5. {
  6. gl_Position = vec4(1.0);
  7. }