ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / incorrect-in-layout-qualifier-row_major.geom
blob620de87e130a17e79c9dfef0910102a228ce51e2
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, row_major) in;
18 void main()