Rename blit common shader module

This commit is contained in:
Kovid Goyal 2026-07-01 07:49:59 +05:30
parent 5e71d46a38
commit 740d2275dc
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
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;