summaryrefslogtreecommitdiffstats
path: root/widget/src/shader
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--widget/src/shader.rs2
-rw-r--r--widget/src/shader/program.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/widget/src/shader.rs b/widget/src/shader.rs
index 06254a1c..6d532e59 100644
--- a/widget/src/shader.rs
+++ b/widget/src/shader.rs
@@ -14,8 +14,8 @@ use crate::renderer::wgpu::primitive;
use std::marker::PhantomData;
-pub use crate::graphics::Viewport;
pub use crate::Action;
+pub use crate::graphics::Viewport;
pub use primitive::{Primitive, Storage};
/// A widget which can render custom shaders with Iced's `wgpu` backend.
diff --git a/widget/src/shader/program.rs b/widget/src/shader/program.rs
index 81ecc9b1..bbea937c 100644
--- a/widget/src/shader/program.rs
+++ b/widget/src/shader/program.rs
@@ -1,5 +1,5 @@
-use crate::core::mouse;
use crate::core::Rectangle;
+use crate::core::mouse;
use crate::renderer::wgpu::Primitive;
use crate::shader::{self, Action};