aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/texture/mod.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:23 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:23 +0100
commitc92ddd37d04ebc7fb5582edd399f607c542e5501 (patch)
treebea339649563f27a140e5c81f533325cf5580a20 /stockton-render/src/draw/texture/mod.rs
parent36fdf081022aae4b21758fe23422ead88c9ca9d6 (diff)
fix(draw): better queue negotiator
Diffstat (limited to 'stockton-render/src/draw/texture/mod.rs')
-rw-r--r--stockton-render/src/draw/texture/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/stockton-render/src/draw/texture/mod.rs b/stockton-render/src/draw/texture/mod.rs
index 62b28c5..5720349 100644
--- a/stockton-render/src/draw/texture/mod.rs
+++ b/stockton-render/src/draw/texture/mod.rs
@@ -12,7 +12,7 @@ pub use self::block::TexturesBlock;
pub use self::image::LoadableImage;
pub use self::load::TextureLoadConfig;
pub use self::loader::BlockRef;
-pub use self::repo::TextureRepo;
+pub use self::repo::{TextureRepo, TexLoadQueue};
/// The size of each pixel in an image
pub const PIXEL_SIZE: usize = std::mem::size_of::<u8>() * 4;