1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The glutin prelude.
//!
//! The purpose of this module is to make accessing common imports more
//! convenient. The prelude also imports traits shared by the implementations of
//! graphics apis.
//!
//! ```no_run
//! # #![allow(unused_imports)]
//! use glutin::prelude::*;
//! ```

pub use crate::config::GlConfig;
pub use crate::context::{GlContext, NotCurrentGlContext, PossiblyCurrentGlContext};
pub use crate::display::GlDisplay;
pub use crate::surface::GlSurface;