summaryrefslogtreecommitdiffstats
path: root/glow/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 19:55:05 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 19:55:05 +0200
commit750a441a8c7c76b240db238283e9cbdab8d6932d (patch)
treef0e43b25375d1eace3e3d4871e7c19e01268f986 /glow/src/lib.rs
parent05af8d00d4c0f7b8e0ece85224fd90a92da86da8 (diff)
downloadiced-750a441a8c7c76b240db238283e9cbdab8d6932d.tar.gz
iced-750a441a8c7c76b240db238283e9cbdab8d6932d.tar.bz2
iced-750a441a8c7c76b240db238283e9cbdab8d6932d.zip
Move `Transformation` to `iced_graphics`
Diffstat (limited to 'glow/src/lib.rs')
-rw-r--r--glow/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/glow/src/lib.rs b/glow/src/lib.rs
index 27c39b99..f8032433 100644
--- a/glow/src/lib.rs
+++ b/glow/src/lib.rs
@@ -7,7 +7,6 @@
mod backend;
mod quad;
mod text;
-mod transformation;
mod triangle;
mod viewport;
@@ -19,8 +18,8 @@ pub use settings::Settings;
pub use viewport::Viewport;
pub(crate) use backend::Backend;
+pub(crate) use iced_graphics::Transformation;
pub(crate) use quad::Quad;
-pub(crate) use transformation::Transformation;
pub type Renderer = iced_graphics::Renderer<Backend>;