summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-11-05 03:26:19 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-11-05 03:26:19 +0100
commit0a23f518c70d27f2e44af38e5d3be2a0ab1a9bc1 (patch)
tree6fc01728b4141cb70abec59a7340101a9990009c /wgpu/src/image.rs
parentd3b613df446aaf47b62c7c24422026f8872e9448 (diff)
downloadiced-0a23f518c70d27f2e44af38e5d3be2a0ab1a9bc1.tar.gz
iced-0a23f518c70d27f2e44af38e5d3be2a0ab1a9bc1.tar.bz2
iced-0a23f518c70d27f2e44af38e5d3be2a0ab1a9bc1.zip
Remove redundant features in `iced_wgpu` and `iced_glow`
Diffstat (limited to 'wgpu/src/image.rs')
-rw-r--r--wgpu/src/image.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/wgpu/src/image.rs b/wgpu/src/image.rs
index a4a422ce..d06815bb 100644
--- a/wgpu/src/image.rs
+++ b/wgpu/src/image.rs
@@ -1,6 +1,6 @@
mod atlas;
-#[cfg(feature = "image_rs")]
+#[cfg(feature = "image")]
use iced_graphics::image::raster;
#[cfg(feature = "svg")]
@@ -17,7 +17,7 @@ use std::mem;
use bytemuck::{Pod, Zeroable};
-#[cfg(feature = "image_rs")]
+#[cfg(feature = "image")]
use iced_native::image;
#[cfg(feature = "svg")]
@@ -25,7 +25,7 @@ use iced_native::svg;
#[derive(Debug)]
pub struct Pipeline {
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
raster_cache: RefCell<raster::Cache<Atlas>>,
#[cfg(feature = "svg")]
vector_cache: RefCell<vector::Cache<Atlas>>,
@@ -243,7 +243,7 @@ impl Pipeline {
});
Pipeline {
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
raster_cache: RefCell::new(raster::Cache::default()),
#[cfg(feature = "svg")]
@@ -262,7 +262,7 @@ impl Pipeline {
}
}
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
pub fn dimensions(&self, handle: &image::Handle) -> Size<u32> {
let mut cache = self.raster_cache.borrow_mut();
let memory = cache.load(handle);
@@ -291,7 +291,7 @@ impl Pipeline {
) {
let instances: &mut Vec<Instance> = &mut Vec::new();
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
let mut raster_cache = self.raster_cache.borrow_mut();
#[cfg(feature = "svg")]
@@ -299,7 +299,7 @@ impl Pipeline {
for image in images {
match &image {
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
layer::Image::Raster { handle, bounds } => {
if let Some(atlas_entry) = raster_cache.upload(
handle,
@@ -314,7 +314,7 @@ impl Pipeline {
);
}
}
- #[cfg(not(feature = "image_rs"))]
+ #[cfg(not(feature = "image"))]
layer::Image::Raster { .. } => {}
#[cfg(feature = "svg")]
@@ -450,7 +450,7 @@ impl Pipeline {
device: &wgpu::Device,
encoder: &mut wgpu::CommandEncoder,
) {
- #[cfg(feature = "image_rs")]
+ #[cfg(feature = "image")]
self.raster_cache
.borrow_mut()
.trim(&mut self.texture_atlas, &mut (device, encoder));