aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/texture/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-render/src/draw/texture/mod.rs')
-rw-r--r--stockton-render/src/draw/texture/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/stockton-render/src/draw/texture/mod.rs b/stockton-render/src/draw/texture/mod.rs
index ec36502..3878472 100644
--- a/stockton-render/src/draw/texture/mod.rs
+++ b/stockton-render/src/draw/texture/mod.rs
@@ -17,11 +17,14 @@
//! Everything related to loading textures into GPU memory
+// Since this is in the process of being rewritten, we ignore this for now
+#![allow(clippy::too_many_arguments)]
+
mod chunk;
pub mod image;
pub mod loader;
mod resolver;
+pub use self::image::LoadableImage;
pub use self::image::{LoadedImage, SampledImage};
pub use self::loader::TextureStore;
-pub use self::image::LoadableImage; \ No newline at end of file