ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / linker / override-builtin-const-07.shader_test
blob17a6391d5cee8ff82102da2881ee3f1f6e085893
1 [require]
2 GLSL >= 1.10
4 [vertex shader]
5 void main() { gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; }
7 [fragment shader]
8 /* From page 38 (page 44 of the PDF) of the GLSL 1.10 spec:
9  *
10  *     "A shader can redefine built-in functions. If a built-in function is
11  *     redeclared in a shader (i.e. a prototype is visible) before a call to
12  *     it, then the linker will only attempt to resolve that call within the
13  *     set shaders that are linked with it."
14  */
15 float func(float);
17 float abs(float x)
19   return x;
22 void main()
24   /* The call to abs in func should bind to the built-in version, but
25    * the call to abs here, which follows the override, should not.
26    */
27   gl_FragColor = (func(-1.0) == abs(-1.0))
28                   ? vec4(1.0, 0.0, 0.0, 1.0)
29                   : vec4(0.0, 1.0, 0.0, 1.0);
32 [fragment shader]
33 float func(float x)
35   return abs(x);
38 [test]
39 draw rect -1 -1 2 2
40 probe all rgb 0.0 1.0 0.0