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."
18 layout(max_vertices = 3, triangle_strip) out;