96 releases (breaking)
Uses old Rust 2015
0.72.0 | Sep 26, 2023 |
---|---|
0.71.0 | Feb 25, 2023 |
0.70.1 | May 13, 2022 |
0.69.0 | Apr 17, 2021 |
0.8.0 | Jul 31, 2015 |
#943 in Graphics APIs
12,869 downloads per month
Used in 49 crates
(24 directly)
68KB
740 lines
glutin_window
A glutin back-end for the Piston game engine
Installation
To use this as a dependency, add the following code to your Cargo.toml file:
[dependencies.pistoncore-glutin_window]
git = "https://github.com/PistonDevelopers/glutin_window"
How to create a window
let mut window: GlutinWindow = WindowSettings::new("Glutin Window", (640, 480))
.fullscreen(false)
.vsync(true)
.build()
.unwrap();
See the examples for more ways to create a window.
Dependencies
Dependencies
~3–16MB
~174K SLoC