kitty/kitty/blit_fragment.glsl
2020-01-21 00:28:55 +01:00

11 lines
138 B
GLSL

#version GLSL_VERSION
uniform sampler2D image;
in vec2 texcoord;
out vec4 color;
void main() {
color = texture(image, texcoord);
}