summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/shaders/frag/rmltex.fs
blob: af86b5b8b3844eaf44a7656a8f0eeec2554f96ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core

in vec4 color;
in vec2 uv;

out vec4 fragColor;

uniform sampler2D fontTexture;

void main() {
    fragColor = color * texture(fontTexture, uv);
}