ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / linker / override-builtin-const-06.shader_test
blobca0b717f97a7002b61b2ef2b340c66a7adec52f2
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 void main()
17   gl_FragColor = abs(vec4(0.0, -1.0, 0.0, 1.0));
20 vec4 abs(vec4 unused);
22 [fragment shader]
23 vec4 abs(vec4 unused)
25   return vec4(1.0, 0.0, 0.0, 1.0);
28 [test]
29 draw rect -1 -1 2 2
30 probe all rgb 0.0 1.0 0.0