summaryrefslogtreecommitdiffstats
path: root/res/text.f.glsl
blob: fccddafc69813af6cd18fa12d0bcfd9dc65e6223 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core
in vec2 TexCoords;

uniform sampler2D text;
uniform vec3 textColor;

void main()
{
    vec4 sampled = vec4(1.0, 1.0, 1.0, texture(text, TexCoords).r);
    gl_FragColor = vec4(textColor, 1.0) * sampled;
}