summaryrefslogtreecommitdiffstats
path: root/wgpu
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-05-08 09:23:53 +0200
committerLibravatar GitHub <noreply@github.com>2024-05-08 09:23:53 +0200
commite07b42ac96b8d098a883c93afe828a439f479c7b (patch)
tree4858388c6b4e2f41a484164a72af53bdaf11f9f1 /wgpu
parent247870f83bc12f3f4b549bb582f1058f5adcce25 (diff)
parent7e7285d60f08e9d32a796e9adf7e37535a67fc43 (diff)
downloadiced-e07b42ac96b8d098a883c93afe828a439f479c7b.tar.gz
iced-e07b42ac96b8d098a883c93afe828a439f479c7b.tar.bz2
iced-e07b42ac96b8d098a883c93afe828a439f479c7b.zip
Merge pull request #2427 from iced-rs/winit-0.30
Update `winit` to `0.30`
Diffstat (limited to 'wgpu')
-rw-r--r--wgpu/src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index ad8ac591..1fbdbe9a 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -67,8 +67,6 @@ use crate::core::{
use crate::graphics::text::{Editor, Paragraph};
use crate::graphics::Viewport;
-use std::cell::RefCell;
-
/// A [`wgpu`] graphics renderer for [`iced`].
///
/// [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
@@ -84,7 +82,7 @@ pub struct Renderer {
// TODO: Centralize all the image feature handling
#[cfg(any(feature = "svg", feature = "image"))]
- image_cache: RefCell<image::Cache>,
+ image_cache: std::cell::RefCell<image::Cache>,
}
impl Renderer {
@@ -103,7 +101,9 @@ impl Renderer {
text_storage: text::Storage::new(),
#[cfg(any(feature = "svg", feature = "image"))]
- image_cache: RefCell::new(_engine.create_image_cache(_device)),
+ image_cache: std::cell::RefCell::new(
+ _engine.create_image_cache(_device),
+ ),
}
}