summaryrefslogtreecommitdiffstats
path: root/widget/src/shader.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-14 14:04:54 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-14 14:04:54 +0100
commit63f36b04638f14af3455ead8b82d581a438a28a3 (patch)
tree493381fbc949cb69ddc45102674ec5c4635b5e01 /widget/src/shader.rs
parent91d7df52cdedd1b5c431fdb51a6356e827765b60 (diff)
downloadiced-63f36b04638f14af3455ead8b82d581a438a28a3.tar.gz
iced-63f36b04638f14af3455ead8b82d581a438a28a3.tar.bz2
iced-63f36b04638f14af3455ead8b82d581a438a28a3.zip
Export `wgpu` crate in `shader` module in `iced_widget`
Diffstat (limited to 'widget/src/shader.rs')
-rw-r--r--widget/src/shader.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/widget/src/shader.rs b/widget/src/shader.rs
index 9d482537..fe6214db 100644
--- a/widget/src/shader.rs
+++ b/widget/src/shader.rs
@@ -17,6 +17,7 @@ use crate::renderer::wgpu::primitive::pipeline;
use std::marker::PhantomData;
+pub use crate::renderer::wgpu::wgpu;
pub use pipeline::{Primitive, Storage};
/// A widget which can render custom shaders with Iced's `wgpu` backend.