Move Antialiasing to iced_graphics

This commit is contained in:
Héctor Ramón Jiménez 2020-05-19 20:34:17 +02:00
parent f0480854a9
commit c2e0c52ce0
4 changed files with 27 additions and 48 deletions

View file

@ -1,3 +1,4 @@
mod antialiasing;
mod defaults;
mod primitive;
mod renderer;
@ -12,6 +13,7 @@ pub mod triangle;
#[doc(no_inline)]
pub use widget::*;
pub use antialiasing::Antialiasing;
pub use backend::Backend;
pub use defaults::Defaults;
pub use primitive::Primitive;