| 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 | |
| 12 | pub use crate::config::GlConfig; |
| 13 | pub use crate::context::{GlContext, NotCurrentGlContext, PossiblyCurrentGlContext}; |
| 14 | pub use crate::display::GlDisplay; |
| 15 | pub use crate::surface::GlSurface; |
| 16 |
