ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / layout-not-case-sensitive-max-vert.geom
blob96321277c64a96e9a3264324b3d6c98816427849
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(maX_VERTices = 50) out;
14 layout(triangles) in;
15 layout(triangle_strip) out;
17 void main()