summaryrefslogtreecommitdiffstats
path: root/renderer/src/geometry.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--renderer/src/geometry.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/renderer/src/geometry.rs b/renderer/src/geometry.rs
index e491ea73..361fc86b 100644
--- a/renderer/src/geometry.rs
+++ b/renderer/src/geometry.rs
@@ -2,9 +2,9 @@ mod cache;
pub use cache::Cache;
-pub use iced_graphics::geometry::*;
-
-use crate::{Backend, Point, Rectangle, Size, Vector};
+use crate::core::{Point, Rectangle, Size, Vector};
+use crate::graphics::geometry::{Fill, Geometry, Path, Stroke, Text};
+use crate::Backend;
pub enum Frame {
Wgpu(iced_wgpu::geometry::Frame),