glsl: test loop unroll with uint overflow
[piglit.git] / tests / spec / glsl-1.10 / linker / override-builtin-uniform-02.shader_test
blobc309ae7fd23ba17613b1d4d86c9089bbe1864173
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 uniform vec4 v;
17 vec4 abs(vec4 x)
19   /* Return a swizzle of x instead of a constant value because we don't want
20    * the compiler to optimize away all uses of the uniform.  This will make
21    * the test fail because shader_runner won't be able to glGetUnformLocation
22    * on the uniform.
23    */
24   return x.yxzw;
27 void main()
29   gl_FragColor = abs(v);
32 [test]
33 uniform vec4 v 1.0 0.0 0.0 1.0
34 draw rect -1 -1 2 2
35 probe all rgb 0.0 1.0 0.0