From 30baf81858e85b7a28f4c8086de8c81023b76e11 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 Oct 2017 12:58:38 +0530 Subject: [PATCH] Fix #140 --- kitty/graphics_fragment.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/graphics_fragment.glsl b/kitty/graphics_fragment.glsl index d556e802e..da2bfb059 100644 --- a/kitty/graphics_fragment.glsl +++ b/kitty/graphics_fragment.glsl @@ -6,5 +6,5 @@ in vec2 texcoord; out vec4 color; void main() { - color = texture2D(image, texcoord); + color = texture(image, texcoord); }