From 6551a0b2ab6c831dd1d3646ecf55180339275e22 Mon Sep 17 00:00:00 2001 From: Bingus Date: Thu, 11 May 2023 09:12:06 -0700 Subject: Added support for gradients as background variants + other optimizations. --- wgpu/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'wgpu/src/lib.rs') diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 4a92c345..c05280a6 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -59,8 +59,6 @@ pub use backend::Backend; pub use layer::Layer; pub use settings::Settings; -use buffer::Buffer; - #[cfg(any(feature = "image", feature = "svg"))] mod image; -- cgit From e267e075ccd35ae3ca357ae4143796e68c1ad392 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 19 May 2023 04:02:18 +0200 Subject: Avoid redundant `buffer::Buffer` import --- wgpu/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'wgpu/src/lib.rs') 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; -- cgit