summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.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/lib.rs
parentf557b810f5931e69a9a35353b20fff1b07480715 (diff)
downloadiced-e267e075ccd35ae3ca357ae4143796e68c1ad392.tar.gz
iced-e267e075ccd35ae3ca357ae4143796e68c1ad392.tar.bz2
iced-e267e075ccd35ae3ca357ae4143796e68c1ad392.zip
Avoid redundant `buffer::Buffer` import
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r--wgpu/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index c05280a6..571d2718 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -50,6 +50,8 @@ mod quad;
mod text;
mod triangle;
+use buffer::Buffer;
+
pub use iced_graphics as graphics;
pub use iced_graphics::core;