summaryrefslogtreecommitdiff
path: root/tests/spec/arb_gpu_shader5/execution/built-in-functions/const-bitCount.shader_test
blob: 7ba0c91e2899a23ef6073ef6207b05290c20afe4 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[require]
GLSL >= 1.50
GL_ARB_gpu_shader5

[vertex shader]
in vec4 vertex;

void main() {
	gl_Position = vertex;
}

[fragment shader]
#extension GL_ARB_gpu_shader5 : enable

void bad_constant_folding();

out vec4 color;

void main()
{
	/* Green if both pass. */
	color = vec4(0.0, 1.0, 0.0, 1.0);

	if (ivec4(0) != bitCount(ivec4(0)))
		bad_constant_folding();
	else if (ivec4(0) != bitCount(uvec4(0u)))
		bad_constant_folding();

	if (ivec4(1) != bitCount(ivec4(1, 2, 4, 8)))
		bad_constant_folding();
	else if (ivec4(1) != bitCount(uvec4(1u, 2u, 4u, 8u)))
		bad_constant_folding();

	if (ivec4(1, 2, 3, 4) != bitCount(ivec4(1, 3, 7, 15)))
		bad_constant_folding();
	else if (ivec4(1, 2, 3, 4) != bitCount(uvec4(1u, 3u, 7u, 15u)))
		bad_constant_folding();

	if (ivec4(6, 6, 3, 5) != bitCount(ivec4(783, 111, 385, 484)))
		bad_constant_folding();
	else if (ivec4(6, 6, 3, 5) != bitCount(uvec4(783u, 111u, 385u, 484u)))
		bad_constant_folding();

	if (ivec4(32, 31, 31, 30) != bitCount(ivec4(-1, -2, -3, -4)))
		bad_constant_folding();
	else if (ivec4(32, 31, 31, 30) != bitCount(uvec4(0xFFFFFFFFu, 0xFFFFFFFEu, 0xFFFFFFFDu, 0xFFFFFFFCu)))
		bad_constant_folding();
}

[vertex data]
vertex/float/2
-1.0 -1.0
 1.0 -1.0
 1.0  1.0
-1.0  1.0

[test]
draw arrays GL_TRIANGLE_FAN 0 4
probe all rgba 0.0 1.0 0.0 1.0