An SDL2 backend for Glium - a high-level OpenGL wrapper for the Rust language.
This library, along with glium
and rust-sdl2
,
are in heavy development and are subject to change.
```toml [dependencies] glium_sdl2 = "0.2" sdl2 = "0.4"
[dependencies.glium] version = "0.5"
features = ["image", "nalgebra", "cgmath", "glreadbuffer", "gldepthtextures"] default-features = false ```
gliumsdl2 doesn't reexport the glium
or sdl2
crates, so you must declare
them _with the versions listed above in your Cargo.toml
file.
glium_sdl2 will be bumped to 0.3, 0.4, etc. once this library, glium
or sdl2
make breaking changes.
Using glium with SDL2 is very similar to using glium with glutin. Generally speaking, Glium documentation and tutorials should be fairly trivial to adapt to SDL2.
```rust
extern crate glium;
extern crate glium_sdl2; extern crate sdl2;
fn main() { use glium_sdl2::DisplayBuild;
let mut sdl_context = sdl2::init().video().unwrap();
let display = sdl_context.window("My window", 800, 600)
.resizable()
.build_glium()
.unwrap();
let mut running = true;
while running {
let mut target = display.draw();
// do drawing here...
target.finish();
// Event loop: includes all windows
for event in sdl_context.event_pump().poll_iter() {
use sdl2::event::Event;
match event {
Event::Quit { .. } => {
running = false;
},
_ => ()
}
}
}
} ```