Extensions for glutin to initialize & update old school gfx. An alternative to gfxwindowglutin.
```rust use oldschoolgfxglutinext::*;
type ColorFormat = gfx::format::Srgba8; type DepthFormat = gfx::format::DepthStencil;
// Initialize
let (windowctx, mut device, mut factory, mut maincolor, mut maindepth) =
glutin::ContextBuilder::new()
.withgfxcolordepth::
// Update, ie after a resize windowctx.updategfx(&mut maincolor, &mut maindepth); ```
cargo run --example triangle
All crates maintained with latest stable rust.