Draft first working version of iced_glow 🎉

This commit is contained in:
Héctor Ramón Jiménez 2020-05-19 14:23:28 +02:00
parent 33448508a5
commit d4743183d4
51 changed files with 3212 additions and 42 deletions

6
glow/src/window.rs Normal file
View file

@ -0,0 +1,6 @@
//! Display rendering results on windows.
mod backend;
mod swap_chain;
pub use backend::Backend;
pub use swap_chain::SwapChain;