]> git.nega.tv - josh/narcissus/commitdiff
Fix missing file from previous commit
authorJoshua Simmons <josh@nega.tv>
Wed, 16 Nov 2022 23:28:45 +0000 (00:28 +0100)
committerJoshua Simmons <josh@nega.tv>
Wed, 16 Nov 2022 23:28:45 +0000 (00:28 +0100)
narcissus-core/src/lib.rs

index 7f5a5525b4e56c28171a206d9eb5016e8382fac6..559580aa753e7cdee9210ac39547a4f6818e8c98 100644 (file)
@@ -1,7 +1,6 @@
 mod arena;
 mod bitset;
 mod fixed_vec;
-mod image;
 mod libc;
 pub mod manual_arc;
 mod mutex;
@@ -10,6 +9,7 @@ mod pool;
 pub mod rand;
 mod ref_count;
 pub mod slice;
+mod texture;
 mod uuid;
 mod virtual_mem;
 mod virtual_vec;
@@ -18,10 +18,10 @@ mod waiter;
 pub use arena::{Arena, HybridArena};
 pub use bitset::BitIter;
 pub use fixed_vec::FixedVec;
-pub use image::Texture;
 pub use mutex::Mutex;
 pub use pool::{Handle, Pool};
 pub use ref_count::{Arc, Rc};
+pub use texture::Texture;
 pub use uuid::Uuid;
 pub use virtual_mem::{virtual_commit, virtual_free, virtual_reserve};
 pub use virtual_vec::{VirtualDeque, VirtualVec};