summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-clamp-2.shader_test
blob: 5d856caef2c3f5cf9b484db374a06df48ab07676 (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
29
[require]
GLSL >= 1.10

[vertex shader]
varying vec4 color;

void main()
{
	gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
	/* Renormalize to [-1, 2] */
	color = (gl_Vertex + 1.0) * 3.0 / 2.0 - 1.0;
}

[fragment shader]
varying vec4 color;

void main()
{
	float x = min(1.0, max(0.0, color.x)) * 0.5 + 0.25;
	float y = min(1.0, max(0.0, color.y)) * 0.5 + 0.25;
	gl_FragColor = vec4(x, y, 0.0, 0.0);
}

[test]
draw rect -1 -1 2 2
relative probe rgba (0.0, 0.0) (0.25, 0.25, 0.0, 0.0)
relative probe rgba (1.0, 0.0) (0.75, 0.25, 0.0, 0.0)
relative probe rgba (0.0, 1.0) (0.25, 0.75, 0.0, 0.0)
relative probe rgba (1.0, 1.0) (0.75, 0.75, 0.0, 0.0)