7 // Section 4.3.8.2(Output Layout Qualifiers) of the GLSL 1.50 spec says:
8 // "All geometry shader output layout declarations in a program must declare the
9 // same layout and same value for max_vertices."
14 layout(line_strip, max_vertices=3) out;
18 layout(triangle_strip, max_vertices=3) out;