Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

attribute-09.glsl 125B

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