aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/execution/1.20/maximums/gl_MaxFragmentUniformComponents.shader_test
blob: 3aefbf518a77a42edd0be2f034b94da1a249074e (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
# [description]
# Tests for GLSL 1.20 minimum maximums for the builtin constants.
#
# See the GLSL 1.20.8 specification, section 7.4, page 49 (page 55 of the PDF).

[require]
GLSL >= 1.20

[vertex shader]
#version 120
void main(void)
{
	gl_Position = gl_Vertex;
}

[fragment shader]
#version 120
void main(void)
{
	if (gl_MaxFragmentUniformComponents >= 64)
		gl_FragColor = vec4(0, 1, 0, 0);
	else
		gl_FragColor = vec4(1, 0, 0, 0);
}

[test]
draw rect -1 -1 2 2
probe all rgba 0.0 1.0 0.0 0.0