kitty/kitty/tint_fragment.glsl
Kovid Goyal 330ed8e4ae
Add an option to tint background images using the current background color
Note still has to be implemented for transparent windows
2020-02-02 11:22:21 +05:30

9 lines
105 B
GLSL

#version GLSL_VERSION
uniform vec4 tint_color;
out vec4 color;
void main() {
color = tint_color;
}