luminance_gl/lib.rs
1//! OpenGL backends.
2//!
3//! This crate exportes [OpenGL](https://www.khronos.org/opengl/) backends for
4//! [luminance](https://crates.io/crates/luminance). This crate can be used via two mechanisms:
5//!
6//! - Automatically selected for you by [luminance-front](https://crates.io/crates/luminance-front). This is the option
7//! you should probably go to in most of the cases, where you want the compiler to pick the backend type for you
8//! without caring too much about it.
9//! - Manually picked. In this case, you will want to browse the content of this crate to use a _backend type_.
10
11pub mod gl33;
12
13pub use gl33::GL33;