summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-clamp-vertex-color.shader_test
blob: 76262a73c8c3342de26889a566d42a273f8c4cb8 (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
[require]
GLSL >= 1.10

# GL_ARB_color_buffer_float provides a way to disable vertex color clamping,
# but without it, the vertex colors must be clamped.

[vertex shader]
void main()
{
	gl_Position = ftransform();
	gl_FrontColor = vec4(-2, -1, 0.5, 3);		  /* (0, 0,   0.5, 1) */
	gl_FrontSecondaryColor = vec4(2, 0.5, 1.5, -0.5); /* (1, 0.5, 1,   0) */
}

[fragment shader]
uniform vec4 arg0;
void main()
{
	gl_FragColor = (gl_Color + gl_SecondaryColor) * 0.5;
}

[test]
draw rect -1 -1 2 2
probe rgba 1 1 0.5 0.25 0.75 0.5