diff options
author | 2024-05-07 15:50:18 +0200 | |
---|---|---|
committer | 2024-05-07 16:07:56 +0200 | |
commit | 2645524f88414393d8b3ca9c6fe801b32b5ebd33 (patch) | |
tree | 9fad3313f97bcc5ca9c75c2c7ca08eb21ff578a2 /wgpu | |
parent | db07b9ba9ef20c5995076992bf5592af12698000 (diff) | |
download | iced-2645524f88414393d8b3ca9c6fe801b32b5ebd33.tar.gz iced-2645524f88414393d8b3ca9c6fe801b32b5ebd33.tar.bz2 iced-2645524f88414393d8b3ca9c6fe801b32b5ebd33.zip |
Update `winit` to `0.30`
Diffstat (limited to 'wgpu')
-rw-r--r-- | wgpu/src/lib.rs | 8 |
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), + ), } } |