ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / execution / fs-max-max-max.shader_test
blob47e050018ad4e9dc187e79612ff40cbb94aab6cc
1 [require]
2 GLSL >= 1.10
4 [vertex shader passthrough]
6 [fragment shader]
8 uniform float u;
9 uniform float u2;
11 void main()
13   float a = u;
14   float b = u2;
16   a = max(a, 0.35);
17   b = max(b, 0.35);
19   float c = max(a, b);
21   gl_FragColor = vec4(0.0, c, 0.0, 1.0);
24 [test]
25 clear color 0.2 0.2 0.2 0.2
26 clear
28 uniform float u 0.1
29 uniform float u2 0.1
31 draw rect -1 -1 2 2
32 probe all rgba 0.0 0.35 0.0 1.0