ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_shading_language_420pack / compiler / layout-qualifiers / multiple-input-value-layout-qualifier-in-single-declaration-3.geom
blobd07bd976c6444b3031b2cc9a181e4968f7037682
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_shading_language_420pack GL_ARB_gpu_shader5
5 // [end config]
6 //
7 // From the ARB_shading_language_420pack spec:
8 //
9 //    "More than one layout qualifier may appear in a single declaration."
11 // From the ARB_gpu_shader5 spec:
13 //    "If an invocation count is declared, all such declarations must
14 //     specify the same count."
16 #version 150
17 #extension GL_ARB_shading_language_420pack: enable
18 #extension GL_ARB_gpu_shader5 : enable
20 layout(lines) layout(invocations=4) in;
21 layout(triangle_strip, max_vertices=3) out;
22 layout(invocations=3) in;
24 void main()