From 01f67a2c1f36a90e45f0ff21266bc41152f0c8d5 Mon Sep 17 00:00:00 2001 From: Richard Date: Mon, 1 Nov 2021 18:37:53 -0300 Subject: Export `glow` in `iced_glow` --- examples/integration_opengl/src/main.rs | 1 - examples/integration_opengl/src/scene.rs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/integration_opengl/src') diff --git a/examples/integration_opengl/src/main.rs b/examples/integration_opengl/src/main.rs index 21f6eb25..1007b90f 100644 --- a/examples/integration_opengl/src/main.rs +++ b/examples/integration_opengl/src/main.rs @@ -4,7 +4,6 @@ mod scene; use controls::Controls; use scene::Scene; -use glow; use glow::*; use glutin::dpi::PhysicalPosition; use glutin::event::{Event, ModifiersState, WindowEvent}; diff --git a/examples/integration_opengl/src/scene.rs b/examples/integration_opengl/src/scene.rs index a1245bf2..fc74b78a 100644 --- a/examples/integration_opengl/src/scene.rs +++ b/examples/integration_opengl/src/scene.rs @@ -1,4 +1,5 @@ use glow::*; +use iced_glow::glow; use iced_glow::Color; pub struct Scene { -- cgit