summaryrefslogtreecommitdiffstats
path: root/wgpu/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/lib.rs')
-rw-r--r--wgpu/src/lib.rs15
1 files changed, 3 insertions, 12 deletions
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index 4439b185..473f3621 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -50,25 +50,17 @@ mod quad;
mod text;
mod triangle;
-pub use iced_graphics::primitive;
-pub use iced_graphics::{
- Antialiasing, Color, Error, Font, Gradient, Point, Rectangle, Size, Vector,
- Viewport,
-};
-pub use iced_native::alignment;
+pub use iced_graphics as graphics;
+pub use iced_graphics::core;
-pub use iced_native::Theme;
pub use wgpu;
pub use backend::Backend;
pub use layer::Layer;
-pub use primitive::Primitive;
pub use settings::Settings;
use buffer::Buffer;
-use iced_graphics::Transformation;
-
#[cfg(any(feature = "image", feature = "svg"))]
mod image;
@@ -76,5 +68,4 @@ mod image;
///
/// [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
/// [`iced`]: https://github.com/iced-rs/iced
-pub type Renderer<Theme = iced_native::Theme> =
- iced_graphics::Renderer<Backend, Theme>;
+pub type Renderer<Theme> = iced_graphics::Renderer<Backend, Theme>;