From 00b2f2ec69b8f98b9f6835953711f725402d4b7e Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sat, 10 May 2014 08:48:09 +0530 Subject: [PATCH] Fix some private export warnings --- layers.rs | 2 +- texturegl.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/layers.rs b/layers.rs index 2748127..e288bac 100644 --- a/layers.rs +++ b/layers.rs @@ -81,7 +81,7 @@ pub fn ContainerLayer() -> ContainerLayer { } } -struct ChildIterator { +pub struct ChildIterator { current: Option, } diff --git a/texturegl.rs b/texturegl.rs index 11997ae..53c779b 100644 --- a/texturegl.rs +++ b/texturegl.rs @@ -87,7 +87,7 @@ impl Zero for Texture { /// Encapsulates a bound texture. This ensures that the texture is unbound /// properly. -struct BoundTexture { +pub struct BoundTexture { pub target: TextureTarget }