From ef8a418479dad382eb0bd4933faf4e44a3d0ada0 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 23 Mar 2020 12:27:21 +0100 Subject: [PATCH] library: texture: do not expose sub-modules --- src/texture/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/texture/mod.rs b/src/texture/mod.rs index a9ec8aa..ca99154 100644 --- a/src/texture/mod.rs +++ b/src/texture/mod.rs @@ -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::*;