1//! The glutin prelude.
2//!
3//! The purpose of this module is to make accessing common imports more
4//! convenient. The prelude also imports traits shared by the implementations of
5//! graphics apis.
6//!
7//! ```no_run
8//! # #![allow(unused_imports)]
9//! use glutin::prelude::*;
10//! ```
11
12pub use crate::config::GlConfig;
13pub use crate::context::{GlContext, NotCurrentGlContext, PossiblyCurrentGlContext};
14pub use crate::display::GlDisplay;
15pub use crate::surface::GlSurface;
16