summaryrefslogtreecommitdiffstats
path: root/graphics/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-18 15:19:04 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-18 15:19:04 +0700
commitedea093350e1b576e2b7db50c525e7fa5c3bea9f (patch)
treebcc93c11a804d04e5842cef6c2088911fd4ef822 /graphics/src/lib.rs
parent54a9a232f8110364972a8eef966b7b7477573f4f (diff)
downloadiced-edea093350e1b576e2b7db50c525e7fa5c3bea9f.tar.gz
iced-edea093350e1b576e2b7db50c525e7fa5c3bea9f.tar.bz2
iced-edea093350e1b576e2b7db50c525e7fa5c3bea9f.zip
Move `Defaults` from `iced_graphics` to `iced_native`
Diffstat (limited to 'graphics/src/lib.rs')
-rw-r--r--graphics/src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs
index 9c113da6..dbd94e99 100644
--- a/graphics/src/lib.rs
+++ b/graphics/src/lib.rs
@@ -13,15 +13,14 @@
mod antialiasing;
mod error;
mod primitive;
-mod renderer;
mod transformation;
mod viewport;
pub mod backend;
-pub mod defaults;
pub mod font;
pub mod layer;
pub mod overlay;
+pub mod renderer;
pub mod triangle;
pub mod widget;
pub mod window;
@@ -31,7 +30,6 @@ pub use widget::*;
pub use antialiasing::Antialiasing;
pub use backend::Backend;
-pub use defaults::Defaults;
pub use error::Error;
pub use layer::Layer;
pub use primitive::Primitive;