ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / linker / double-indirect-1.shader_test
blobc1d46e39324b51333a431df9b429ca3750ab338e
1 # Demonstrates a crash in i965. The double indirection via const arrays
2 # is required to trigger this.
4 [require]
5 GLSL >= 1.20
7 [vertex shader]
8 #version 120
10 const float a[] = float[](0);
11 const int b[] = int[](0);
13 uniform int n;
15 void main()
17   gl_Position = vec4(a[b[n]], 0, 0, 1);
20 [test]
21 link success