perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / glsl-1.50 / compiler / layout-out-order-irrelevant.geom
blob05c2b21bbb16ec79f0901f27a10d832d2a3bfdae
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Section 4.3.8 (Layout Qualifiers) of the GLSL 1.50 spec says:
8 // "The tokens in any layout-qualifier-id-list are identifiers, not keywords.
9 //  Generally, they can be listed in any order."
11 // Section 4.3.8.2(Output Layout Qualifiers) of the GLSL 1.50 spec says:
12 // "One declaration can declare either a primitive type (points, line_strip, or
13 //  triangle_strip), or max_vertices, or both."
15 #version 150
17 layout(triangles) in;
18 layout(max_vertices = 3, triangle_strip) out;
20 void main()