summaryrefslogtreecommitdiffstats
path: root/graphics/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-07 03:47:49 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-07 03:47:49 +0100
commit3a26baa564524b0f25c5cb180b592c8b004b68a9 (patch)
treec6a51e9116e7f29552130778fe071efa9b1d1262 /graphics/src/lib.rs
parent9b4bcd287a7f4822314e158990d1dc023d5aab51 (diff)
downloadiced-3a26baa564524b0f25c5cb180b592c8b004b68a9.tar.gz
iced-3a26baa564524b0f25c5cb180b592c8b004b68a9.tar.bz2
iced-3a26baa564524b0f25c5cb180b592c8b004b68a9.zip
Remove `image` abstractions in `iced_graphics`
Diffstat (limited to 'graphics/src/lib.rs')
-rw-r--r--graphics/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs
index c6f9cf57..0c50db52 100644
--- a/graphics/src/lib.rs
+++ b/graphics/src/lib.rs
@@ -28,13 +28,15 @@ mod viewport;
pub mod backend;
pub mod compositor;
-pub mod image;
pub mod primitive;
pub mod renderer;
#[cfg(feature = "geometry")]
pub mod geometry;
+#[cfg(feature = "image")]
+pub mod image;
+
pub use antialiasing::Antialiasing;
pub use backend::Backend;
pub use compositor::Compositor;