summaryrefslogtreecommitdiff
path: root/res/text.f.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'res/text.f.glsl')
-rw-r--r--res/text.f.glsl3
1 files changed, 1 insertions, 2 deletions
diff --git a/res/text.f.glsl b/res/text.f.glsl
index 5915960f..532cf929 100644
--- a/res/text.f.glsl
+++ b/res/text.f.glsl
@@ -15,7 +15,6 @@
in vec2 TexCoords;
in vec3 fg;
in vec4 bg;
-flat in float vb;
flat in int background;
layout(location = 0, index = 0) out vec4 color;
@@ -31,7 +30,7 @@ void main()
discard;
alphaMask = vec4(1.0);
- color = vec4(bg.rgb + vb, 1.0);
+ color = vec4(bg.rgb, 1.0);
} else {
vec3 textColor = texture(mask, TexCoords).rgb;
alphaMask = vec4(textColor, textColor.r);