gfx_gl/lib.rs
1#![crate_name = "gfx_gl"]
2#![crate_type = "lib"]
3
4//! An OpenGL loader generated by [gl-rs](https://github.com/brendanzab/gl-rs).
5//!
6//! This is useful for directly accessing the underlying OpenGL API via the
7//! `GlDevice::with_gl` method. It is also used internally by the `GlDevice`
8//! implementation.
9
10include!(concat!(env!("OUT_DIR"), "/gl_bindings.rs"));