summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-19 04:02:18 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-19 04:02:18 +0200
commite267e075ccd35ae3ca357ae4143796e68c1ad392 (patch)
tree1818f77f81bafde74a7055e198c898afdd4e105d /wgpu/src/image.rs
parentf557b810f5931e69a9a35353b20fff1b07480715 (diff)
downloadiced-e267e075ccd35ae3ca357ae4143796e68c1ad392.tar.gz
iced-e267e075ccd35ae3ca357ae4143796e68c1ad392.tar.bz2
iced-e267e075ccd35ae3ca357ae4143796e68c1ad392.zip
Avoid redundant `buffer::Buffer` import
Diffstat (limited to 'wgpu/src/image.rs')
-rw-r--r--wgpu/src/image.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/image.rs b/wgpu/src/image.rs
index c3479652..3407aa92 100644
--- a/wgpu/src/image.rs
+++ b/wgpu/src/image.rs
@@ -8,10 +8,10 @@ mod vector;
use atlas::Atlas;
-use crate::buffer::Buffer;
use crate::core::{Rectangle, Size};
use crate::graphics::Transformation;
use crate::layer;
+use crate::Buffer;
use std::cell::RefCell;
use std::mem;