ovr_multiview: add some basic glsl tests
[piglit.git] / tests / spec / glsl-1.50 / compiler / incorrect-in-layout-qualifiers-with-variable-declarations.geom
blob60d083e170b11ae7adbb43a8d68499cfbc9950cd
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: false
5 // [end config]
6 //
7 // Tests that input layout qualifiers cannot be used on a variable declaration.
8 //
9 // GLSLangSpec 1.50, section 4.3.8.2 (Output Layout Qualifiers):
10 // "Geometry shaders allow input layout qualifiers only on the interface
11 //  qualifier in, not on an input block,block member, or variable."
13 #version 150
15 layout(points) in float c[];
17 void main()