Add several tests for vertex shader attributes
[mesa.git] / tests / attribute-10.glsl
1 #version 120
2 /* FAIL - attribute cannot have array type in GLSL 1.20 */
3 attribute vec4 i[10];
4
5 void main()
6 {
7 gl_Position = vec4(1.0);
8 }