summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-05-19 04:37:58 +0200
committerLibravatar GitHub <noreply@github.com>2023-05-19 04:37:58 +0200
commitcc5d11f1a6fca90ea57e3fb3a69587c65281b6b9 (patch)
tree349d98171b467b7738874a5ef99ce536512c10eb /wgpu/src/lib.rs
parent8e8b1e1eacc4e2c19c9878625f423c8e09e2d3b9 (diff)
parentf7ed645eddd96f7964268367e24abcb5bb78a979 (diff)
downloadiced-cc5d11f1a6fca90ea57e3fb3a69587c65281b6b9.tar.gz
iced-cc5d11f1a6fca90ea57e3fb3a69587c65281b6b9.tar.bz2
iced-cc5d11f1a6fca90ea57e3fb3a69587c65281b6b9.zip
Merge pull request #1846 from bungoboingo/feat/background-gradients
[Feature] Gradients for Backgrounds
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r--wgpu/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index 7004416f..0a5726b5 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;
@@ -59,8 +61,6 @@ pub use backend::Backend;
pub use layer::Layer;
pub use settings::Settings;
-use buffer::Buffer;
-
#[cfg(any(feature = "image", feature = "svg"))]
mod image;