summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-02-07 22:53:08 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-02-24 13:37:31 +0100
commit363966ee9e7aa81a3679eaea776d2c867aa6c3b0 (patch)
treedf76191179cf23da9153ab00dc91791d7113d829 /wgpu/src/lib.rs
parent34c963f7b39e3f16b55665a978948ead5b869f0f (diff)
downloadiced-363966ee9e7aa81a3679eaea776d2c867aa6c3b0.tar.gz
iced-363966ee9e7aa81a3679eaea776d2c867aa6c3b0.tar.bz2
iced-363966ee9e7aa81a3679eaea776d2c867aa6c3b0.zip
Refactor `image::Pipeline` into `prepare` and `render` architecture
Diffstat (limited to '')
-rw-r--r--wgpu/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index 6d6d3fd6..9da40572 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -56,7 +56,8 @@ pub use wgpu;
pub use backend::Backend;
pub use settings::Settings;
-pub(crate) use iced_graphics::Transformation;
+use crate::buffer::Buffer;
+use iced_graphics::Transformation;
#[cfg(any(feature = "image", feature = "svg"))]
mod image;