blob: d0fe00560e90a6817e19422b69b94df1a6a438fc (
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
|
[require]
GLSL >= 1.10
[vertex shader]
void main()
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}
[fragment shader]
uniform vec4 color;
void main()
{
int count = int(color.w);
vec3 c = color.xyz;
int i;
for (i = 10; i > 0; i--) {
c.x += 0.1;
}
gl_FragColor = vec4(c, 1.0);
}
[test]
ortho
clear color 0.5 0.5 0.5 0.5
clear
draw rect 10 10 10 10
draw rect 30 10 10 10
probe rgb 15 15 1.0 0.0 0.0
probe rgb 35 15 1.0 0.0 0.0
|