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
1 changed files with 1 additions and 1 deletions

View File

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