library: texture: do not expose sub-modules

This commit is contained in:
Bruno BELANYI 2020-03-23 12:27:21 +01:00 committed by Antoine Martin
parent db4b8b05ba
commit ef8a418479

View file

@ -22,5 +22,5 @@ pub trait Texture: std::fmt::Debug {
fn texel_color(&self, point: Point2D) -> LinearColor; fn texel_color(&self, point: Point2D) -> LinearColor;
} }
pub mod uniform; mod uniform;
pub use uniform::*; pub use uniform::*;