Export glow in iced_glow

This commit is contained in:
Richard 2021-11-01 18:37:53 -03:00
parent cc3cf4dfc2
commit 01f67a2c1f
4 changed files with 3 additions and 2 deletions

View file

@ -10,4 +10,3 @@ iced_glutin = { path = "../../glutin" }
iced_glow = { path = "../../glow" }
iced_winit = { path = "../../winit" }
env_logger = "0.8"
glow = "0.6"

View file

@ -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};

View file

@ -1,4 +1,5 @@
use glow::*;
use iced_glow::glow;
use iced_glow::Color;
pub struct Scene {

View file

@ -13,6 +13,8 @@
#![forbid(rust_2018_idioms)]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub use glow;
mod backend;
mod program;
mod quad;