summaryrefslogtreecommitdiff
path: root/tests/spec/glsl-1.10/execution/vs-saturate-pow.shader_test
blob: 01da4b8eae2c04a14fdc049aa94b57efbcc456e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This test exercises a bug introduced in i965: Comparison of comparison
# results to boolean values gave incorrect results.

[vertex shader]
uniform vec4 x;
uniform vec4 y;
varying vec4 color;

void main()
{
	gl_Position = gl_Vertex;
	color = 0.25 + clamp(pow(x, y), 0.0, 1.0) * 0.5;
}

[fragment shader]
varying vec4 color;

void main()
{
	gl_FragColor = color;
}

[test]
uniform vec4 x 0.5 2.0 0.5 1.0
uniform vec4 y 2.0 0.5 -1.0 1.0

draw rect -1 -1 2 2
probe all rgba 0.375 0.75 0.75 0.75