glutin - OpenGL, UTilities and INput

Gitter

Alternative to GLFW in pure Rust.

Build Status Build status

toml [dependencies] glutin = "*"

Note that the crates.io version won't compile on OS/X and Android because the required dependencies haven't been uploaded yet. Instead you can use the git version which works everywhere:

toml [dependencies.glutin] git = "https://github.com/tomaka/glutin"

Documentation

Try it!

bash git clone https://github.com/tomaka/glutin cd glutin cargo run --example window

Usage

```rust extern crate glutin; extern crate libc; extern crate gl;

fn main() { let window = glutin::Window::new().unwrap();

unsafe { window.make_current() };

gl::load_with(|symbol| window.get_proc_address(symbol));

gl::ClearColor(0.0, 1.0, 0.0, 1.0);

while !window.is_closed() {
    window.wait_events();

    gl::Clear(gl::COLOR_BUFFER_BIT);

    window.swap_buffers();
}

} ```

Platform-specific notes

Android

Emscripten

OS/X

Win32

X11