summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer/widget.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/renderer/widget.rs')
-rw-r--r--wgpu/src/renderer/widget.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/wgpu/src/renderer/widget.rs b/wgpu/src/renderer/widget.rs
index 52410bee..84f908e7 100644
--- a/wgpu/src/renderer/widget.rs
+++ b/wgpu/src/renderer/widget.rs
@@ -1,10 +1,18 @@
mod button;
mod checkbox;
mod column;
-mod image;
+mod container;
+mod progress_bar;
mod radio;
mod row;
mod scrollable;
mod slider;
+mod space;
mod text;
mod text_input;
+
+#[cfg(feature = "svg")]
+mod svg;
+
+#[cfg(feature = "image")]
+mod image;