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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
[require]
GLSL >= 1.10
[vertex shader]
uniform float one;
uniform int count1, count2;
void main()
{
vec4 array[11];
array[0] = vec4(0.1, 0, 0, 0) * one;
array[1] = vec4(0, 0.1, 0, 0) * one;
array[2] = vec4(0, 0, 0.1, 0) * one;
array[3] = vec4(0, 0.1, 0, 0) * one;
array[4] = vec4(0, 0 , 0.1, 0) * one;
array[5] = vec4(0, 0, 0.1, 0) * one;
array[6] = vec4(0.1, 0, 0, 0) * one;
array[7] = vec4(0, 0.1, 0, 0) * one;
array[8] = vec4(0, 0.1, 0.1, 0) * one;
array[9] = vec4(0.1, 0.1, 0, 0) * one;
array[10] = vec4(0.1, 0, 0.1, 0) * one;
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
vec4 res = vec4(0);
for (int i = 0; i < count1; i++)
for (int j = 0; j < count2; j++)
res += array[i*3+j];
gl_FrontColor = res;
}
[fragment shader]
void main()
{
gl_FragColor = gl_Color;
}
[test]
ortho
clear color 0.5 0.5 0.5 0.5
clear
uniform float one 1
uniform int count1 0
uniform int count2 0
draw rect 10 10 10 10
probe rgb 15 15 0 0 0
uniform int count1 1
uniform int count2 1
draw rect 30 10 10 10
probe rgb 35 15 0.1 0 0
uniform int count1 3
uniform int count2 1
draw rect 50 10 10 10
probe rgb 55 15 0.2 0.1 0
uniform int count1 1
uniform int count2 3
draw rect 70 10 10 10
probe rgb 75 15 0.1 0.1 0.1
uniform int count1 2
uniform int count2 3
draw rect 90 10 10 10
probe rgb 95 15 0.1 0.2 0.3
uniform int count1 2
uniform int count2 4
draw rect 110 10 10 10
probe rgb 115 15 0.2 0.3 0.3
uniform int count1 2
uniform int count2 5
draw rect 130 10 10 10
probe rgb 135 15 0.2 0.4 0.4
uniform int count1 1
uniform int count2 8
draw rect 150 10 10 10
probe rgb 155 15 0.2 0.3 0.3
uniform int count1 4
uniform int count2 1
draw rect 170 10 10 10
probe rgb 175 15 0.3 0.2 0
uniform int count1 4
uniform int count2 2
draw rect 190 10 10 10
probe rgb 195 15 0.4 0.4 0.2
uniform int count1 3
uniform int count2 5
draw rect 210 10 10 10
probe rgb 215 15 0.5 0.7 0.6
|