blob: beee12927e8bbf7b3ec9248d590c20b284766b36 (
plain) (
blame)
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
|
#ifdef DESC
[program]
type: graphics
vertex: main
fragment: main
[binding]
name: verts
rate: vertex
[attribute]
name: position
type: vec2
[attribute]
name: colour
type: vec3
[attribute]
name: uv
type: vec2
[interpolator]
name: colour
type: vec3
[interpolator]
name: uv
type: vec2
[target]
name: colour
type: vec4
[texture]
name: colour_texture
stage: fragment
dimension: 2
#endif
#ifdef VERTEX_SHADER
void main() {
interpolator.colour = colour;
interpolator.uv = uv;
gl_Position = vec4(position, 0.0, 1.0);
}
#endif
#ifdef FRAGMENT_SHADER
void main() {
vec3 c = texture(colour_texture, interpolator.uv).rgb;
// c *= interpolator.colour;
colour = vec4(c, 1.0);
}
#endif
|