diff --git a/kitty/shaders/blit.slang b/kitty/shaders/blit-common.slang similarity index 97% rename from kitty/shaders/blit.slang rename to kitty/shaders/blit-common.slang index 9be456d97..58c7b3b5c 100644 --- a/kitty/shaders/blit.slang +++ b/kitty/shaders/blit-common.slang @@ -3,7 +3,7 @@ // Distributed under terms of the GPLv3 license. // Maps a vertex id to src and destination co-ordinates -module blit; +module blit_common; public struct BlitOutput { public float2 texcoord; diff --git a/kitty/shaders/graphics.slang b/kitty/shaders/graphics.slang index 911259ebd..6b644f2a4 100644 --- a/kitty/shaders/graphics.slang +++ b/kitty/shaders/graphics.slang @@ -2,7 +2,7 @@ // Copyright (C) 2026 Kovid Goyal // Distributed under terms of the GPLv3 license. -import blit; +import blit_common; import alpha_blend; import utils;