ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_uniform_buffer_object / compiler / block-name-clashes-with-function.vert
blobe8d9dc42cec757059b8f0be9bfb12140474e7464
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * require_extensions: GL_ARB_uniform_buffer_object
5  * [end config]
6  *
7  * Page 31 (page 37 of the PDF) of the GLSL 1.40 spec says:
8  *
9  *     "Uniform block names and variable names declared within uniform blocks
10  *     are scoped at the program level."
11  */
12 #version 120
13 #extension GL_ARB_uniform_buffer_object: require
15 uniform a {
16   vec4 b;
19 float a(void)
21   return b.x;
24 void main()
26   gl_Position = b;