perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / glsl-1.50 / compiler / unnamed-interface-block-elem-uses-gl-prefix.vert
blob31e90acb37ccf91e804e63bf40efc6bea287ed22
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // From section 3.7 (Identifiers) of the GLSL 1.50 spec:
8 //
9 //     Identifiers starting with "gl_" are reserved for use by OpenGL
10 //     and may not be declared in a shader as either a variable or a
11 //     function.
13 // Consequently, an unnamed interface block may not contain a name
14 // starting with "gl_".
16 #version 150
18 out block {
19     vec4 gl_ProsciuttoHoagie;
22 void main()