summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2021-02-13 16:18:40 +0100
committerLibravatar GitHub <noreply@github.com>2021-02-13 16:18:40 +0100
commit4de164dcc7bc3524c8b20f9c734bc1a4ae4c83bc (patch)
tree849fcf5f863ff9067d22b38104137b58bfa54720 /wgpu/src/lib.rs
parent9f5c2eb0c43daa61b19769322cf3692b29e0ac0f (diff)
parente1b1227f0c2214b0ade4004b7985a137e7d56890 (diff)
downloadiced-4de164dcc7bc3524c8b20f9c734bc1a4ae4c83bc.tar.gz
iced-4de164dcc7bc3524c8b20f9c734bc1a4ae4c83bc.tar.bz2
iced-4de164dcc7bc3524c8b20f9c734bc1a4ae4c83bc.zip
Merge pull request #392 from unrelentingtech/image-debloat
Add image format options to reduce code bloat
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r--wgpu/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index a4c2ac0e..e868a655 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -49,7 +49,7 @@ pub use widget::*;
pub(crate) use iced_graphics::Transformation;
-#[cfg(any(feature = "image", feature = "svg"))]
+#[cfg(any(feature = "image_rs", feature = "svg"))]
mod image;
/// A [`wgpu`] graphics renderer for [`iced`].