ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / incorrect-in-layout-qualifier-shared.geom
blob96d02063286c44abaecffb717703be66dcf16d04
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: false
5 // [end config]
6 //
7 // Tests for invalid input layout qualifiers.
8 //
9 // GLSLangSpec 1.50, section 4.3.8.1 (Input Layout Qualifiers):
10 // "Only one argument is accepted. For example,
11 //  layout(triangles) in;"
14 #version 150
16 layout(points, shared) in;
18 void main()