1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-10-13 05:16:48 -04:00
alacritty/res/text.f.glsl
2016-02-24 19:09:21 -08:00

11 lines
222 B
GLSL

#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;
}