aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/24bittextmask_core.frag
blob: 29d1f2301751621b84354b844691b304f7ca53c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 150 core

in vec2 sampleCoord;

out vec4 fragColor;

uniform sampler2D _qt_texture;
uniform float color; // just the alpha, really...

void main()
{
    vec4 glyph = texture(_qt_texture, sampleCoord);
    fragColor = vec4(glyph.rgb * color, glyph.a);
}