diff options
author | 2019-10-06 19:22:25 +0200 | |
---|---|---|
committer | 2019-10-06 19:22:25 +0200 | |
commit | 7765e6da50a3448501ee1b639e580c94a4fbda8a (patch) | |
tree | f87278ce34cb7bde4648c8303048bb51221ef1dd /wgpu/src/lib.rs | |
parent | 5a5ca34b5fcab9266359d3f0885782969f8c058e (diff) | |
download | iced-7765e6da50a3448501ee1b639e580c94a4fbda8a.tar.gz iced-7765e6da50a3448501ee1b639e580c94a4fbda8a.tar.bz2 iced-7765e6da50a3448501ee1b639e580c94a4fbda8a.zip |
Draft `Box` primitive
Diffstat (limited to '')
-rw-r--r-- | wgpu/src/lib.rs | 2 |
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}; |