From 553d81afd16c12e687c1c84f9f1f7266c962d8a0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 19 Nov 2023 21:39:30 -0800 Subject: [PATCH] terminal: enable kitty graphics commands on OpenGL --- src/terminal/kitty/graphics_exec.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/terminal/kitty/graphics_exec.zig b/src/terminal/kitty/graphics_exec.zig index 0415722b6..70c63db7e 100644 --- a/src/terminal/kitty/graphics_exec.zig +++ b/src/terminal/kitty/graphics_exec.zig @@ -35,12 +35,6 @@ pub fn execute( return null; } - // Only Metal supports rendering the images, right now. - if (comptime renderer.Renderer != renderer.Metal) { - log.warn("kitty graphics not supported on this renderer", .{}); - return null; - } - log.debug("executing kitty graphics command: quiet={} control={}", .{ cmd.quiet, cmd.control,