ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / gs-input-sizing-layout-inconsistent-with-prev-length.geom
blob6688ef099d10248169f6cf0b5230054f31bfa06a
1 // Section 4.3.8.1 (Input Layout Qualifiers) of the GLSL 1.50 spec says:
2 //
3 //   It is a compile-time error if a layout declaration's array size
4 //   (from table above) does not match any array size specified in
5 //   declarations of an input variable in the same shader.
6 //
7 // This test verifies the case where the input variable declaration
8 // precedes the layout declaration.
9 //
10 // [config]
11 // expect_result: fail
12 // glsl_version: 1.50
13 // check_link: false
14 // [end config]
16 #version 150
18 in vec4 Color[3];
19 layout(lines) in;