kitty/kitty/border_fragment.glsl

8 lines
101 B
GLSL

#version GLSL_VERSION
in vec4 color;
out vec4 final_color;
void main() {
final_color = color;
}