summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-06 19:22:25 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-06 19:22:25 +0200
commit7765e6da50a3448501ee1b639e580c94a4fbda8a (patch)
treef87278ce34cb7bde4648c8303048bb51221ef1dd /wgpu/src/lib.rs
parent5a5ca34b5fcab9266359d3f0885782969f8c058e (diff)
downloadiced-7765e6da50a3448501ee1b639e580c94a4fbda8a.tar.gz
iced-7765e6da50a3448501ee1b639e580c94a4fbda8a.tar.bz2
iced-7765e6da50a3448501ee1b639e580c94a4fbda8a.zip
Draft `Box` primitive
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r--wgpu/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index 9a2a336f..d5cfee64 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -3,5 +3,5 @@ mod primitive;
mod renderer;
pub use mouse_cursor::MouseCursor;
-pub use primitive::Primitive;
+pub use primitive::{Background, Primitive};
pub use renderer::{Renderer, Target};