summaryrefslogtreecommitdiffstats
path: root/glow/src/triangle.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--glow/src/triangle.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/glow/src/triangle.rs b/glow/src/triangle.rs
index 5d14666c..0e27bcf2 100644
--- a/glow/src/triangle.rs
+++ b/glow/src/triangle.rs
@@ -2,16 +2,15 @@
mod gradient;
mod solid;
-use crate::{program, Transformation};
+use crate::program;
+use crate::Transformation;
use iced_graphics::layer::mesh::{self, Mesh};
-use iced_graphics::triangle;
+use iced_graphics::triangle::{self, Vertex2D};
use glow::HasContext;
use std::marker::PhantomData;
-pub use iced_graphics::triangle::{Mesh2D, Vertex2D};
-
#[derive(Debug)]
pub(crate) struct Pipeline {
vertex_array: <glow::Context as HasContext>::VertexArray,