mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-15 21:14:35 +02:00
15 lines
227 B
GLSL
15 lines
227 B
GLSL
#version GLSL_VERSION
|
|
#define ALPHA_TYPE
|
|
|
|
uniform sampler2D image;
|
|
|
|
in vec2 texcoord;
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = texture(image, texcoord);
|
|
#ifdef PREMULT
|
|
color = vec4(color.rgb * color.a, color.a);
|
|
#endif
|
|
}
|