aboutsummaryrefslogtreecommitdiff
path: root/bin/font.shader
blob: 0b8df7cf2be85cc231c708ef3446e225acf44677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#VERTEX_SHADER

Vertex vert(Vertex v)
{
    return v;
}

#END_VERTEX_SHADER

#FRAGMENT_SHADER

uniform float dt;

Color frag(Color col, Texture tex, Vertex v)
{
    Color c = texel(tex, v.uv); 

	return c;
}
//1.21 1.34

//stbi_write_png
#END_FRAGMENT_SHADER