ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / linker / array-initializers-1.shader_test
blob911acd466a282668a3ee2be1b73747dbfa5f814c
1 # Demonstrates a crash in mesa.
3 [require]
4 GLSL >= 1.20
6 [vertex shader]
7 #version 120
9 const int xs[] = int[](1,2,3);
10 const int ys[] = int[](1,2);
12 uniform int n;
14 void main()
16   gl_Position = vec4(xs[n]+ys[n], 0, 0, 1);
19 [test]
20 link success