summaryrefslogtreecommitdiff
path: root/intermediate/debug.glsl
blob: 135511ba5b0bf2e48ae8f76cfae0d68934b69846 (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
#ifdef DESC
[program]
type: graphics
vertex: main
fragment: main

[binding]
name: verts
rate: vertex
[attribute]
name: position
type: vec3
[attribute]
name: colour
type: vec3

[struct]
name: CBuffer
[variable]
name: view_proj
type: mat4

[cbuffer]
type: CBuffer
name: cbuf
stage: vertex

[interpolator]
name: colour
type: vec3

[target]
name: colour
type: vec4

#endif

#ifdef VERTEX_SHADER

void main() {
	interpolator.colour = colour;
	gl_Position = cbuf.view_proj * vec4(position, 1.0);
}

#endif

#ifdef FRAGMENT_SHADER

void main() {
	colour = vec4(interpolator.colour, 1.0);
}

#endif