Rename blit common shader module

This commit is contained in:
Kovid Goyal
2026-07-01 07:49:59 +05:30
parent 5e71d46a38
commit 740d2275dc
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -2,7 +2,7 @@
// Copyright (C) 2026 Kovid Goyal <kovid at kovidgoyal.net>
// Distributed under terms of the GPLv3 license.
import blit;
import blit_common;
import alpha_blend;
import utils;