summaryrefslogtreecommitdiff
path: root/res/text.f.glsl
blob: d2defb39405bad5e5632ee84378c390a5e974928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 330 core
in vec2 TexCoords;
in vec3 fg;

layout(location = 0, index = 0) out vec4 color;
layout(location = 0, index = 1) out vec4 alphaMask;

uniform sampler2D mask;

void main()
{
    alphaMask = vec4(texture(mask, TexCoords).rgb, 1.0);
    color = vec4(fg, 1.0);
}