#glfw-window #window #piston #glfw #piston-game-engine #game-engine

pistoncore-glfw_window

A GLFW window back-end for the Piston game engine

80 breaking releases

Uses old Rust 2015

0.80.0 Nov 14, 2023
0.78.0 Feb 25, 2023
0.77.0 Nov 16, 2022
0.75.0 Feb 23, 2022
0.0.7 Feb 24, 2015

#1651 in Game dev

Download history 24/week @ 2024-02-16 206/week @ 2024-02-23 29/week @ 2024-03-01 5/week @ 2024-03-08 2/week @ 2024-03-15 647/week @ 2024-03-29

654 downloads per month
Used in 2 crates

MIT license

59KB
568 lines

glfw_window Build Status

A GLFW window back-end for the Piston game engine.

Maintainers: @TyOverby, @bvssvni, @Coeuvre

How to contribute

How to create a window

let mut window: GlfwWindow = WindowSettings::new("GLFW Window", (640, 480))
    .fullscreen(false)
    .vsync(true)
    .build()
    .unwrap();

See the examples for more ways to create a window.

How to set up Gfx

After you have created a window, do the following:

let mut device = gfx::GlDevice::new(|s|
    self.window.get_proc_address(s)
);
let (w, h) = window.get_size();
let frame = gfx::Frame::new(w as u16, h as u16);

Troubleshooting

Dependencies

dependencies


lib.rs:

A GLFW window back-end for the Piston game engine.

Dependencies

~2.3–3.5MB
~70K SLoC