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

Vertex vert(Vertex v)
{
    return v;
}

#END_VERTEX_SHADER

#FRAGMENT_SHADER

uniform float dt;

Color frag(Color col, Texture tex, Vertex v)
{
	return col * texel(tex, v.uv);
}

#END_FRAGMENT_SHADER