summaryrefslogtreecommitdiffstats
path: root/graphics/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 22:55:12 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 23:19:39 +0200
commit720e7756f2afe30706b6b1a7fbde86b9f15e1d8c (patch)
tree3a55248a4b25654b1d63b8c547fd0f653471606d /graphics/src/lib.rs
parente6180912488db4d59fbffcb46c5930282306cb92 (diff)
downloadiced-720e7756f2afe30706b6b1a7fbde86b9f15e1d8c.tar.gz
iced-720e7756f2afe30706b6b1a7fbde86b9f15e1d8c.tar.bz2
iced-720e7756f2afe30706b6b1a7fbde86b9f15e1d8c.zip
Move `Layer` to `iced_graphics`
Diffstat (limited to 'graphics/src/lib.rs')
-rw-r--r--graphics/src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs
index 5dc4040f..5ab333c7 100644
--- a/graphics/src/lib.rs
+++ b/graphics/src/lib.rs
@@ -8,6 +8,7 @@ mod widget;
pub mod backend;
pub mod font;
+pub mod layer;
pub mod triangle;
#[doc(no_inline)]
@@ -16,7 +17,13 @@ pub use widget::*;
pub use antialiasing::Antialiasing;
pub use backend::Backend;
pub use defaults::Defaults;
+pub use layer::Layer;
pub use primitive::Primitive;
pub use renderer::Renderer;
pub use transformation::Transformation;
pub use viewport::Viewport;
+
+pub use iced_native::{
+ Background, Font, HorizontalAlignment, Point, Rectangle, Size, Vector,
+ VerticalAlignment,
+};