ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / qualifiers / centroid-01.vert
blob35b04845984d37bd0124baf2579168b2f6b4299c
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.20
4 // [end config]
5 //
6 // "centroid" is a reserved word in GLSL 1.20
7 #version 120
9 uniform vec4 centroid;
11 void main()
13   gl_Position = centroid;