perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / glsl-1.50 / compiler / layout-not-case-sensitive-in.geom
blob23a5d26b3b784709d5b79007cc82eba44f9f77bd
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 // "identifiers are not case sensitive, unless explicitly noted
9 //  otherwise."
11 #version 150
13 layout(TriAngleS) in;
14 layout(triangle_strip, max_vertices = 3) out;
16 void main()