Move Transformation to iced_graphics

This commit is contained in:
Héctor Ramón Jiménez 2020-05-19 19:55:05 +02:00
parent 05af8d00d4
commit 750a441a8c
6 changed files with 5 additions and 58 deletions

View file

@ -36,7 +36,6 @@ mod backend;
mod quad;
mod target;
mod text;
mod transformation;
mod viewport;
pub use iced_graphics::{Defaults, Primitive};
@ -50,8 +49,8 @@ pub use viewport::Viewport;
#[doc(no_inline)]
pub use widget::*;
pub(crate) use iced_graphics::Transformation;
pub(crate) use quad::Quad;
pub(crate) use transformation::Transformation;
pub type Renderer = iced_graphics::Renderer<Backend>;