winit-sonoma-fix/examples/window.rs

24 lines
527 B
Rust
Raw Normal View History

2014-07-27 18:55:37 +10:00
extern crate init = "gl-init-rs";
extern crate libc;
extern crate gl;
fn main() {
use std::default::Default;
2014-07-28 04:38:27 +10:00
let window = init::Window::new(None, "Hello world!", &Default::default(), None).unwrap();
2014-07-27 18:55:37 +10:00
window.make_current();
gl::load_with(|symbol| window.get_proc_address(symbol) as *const libc::c_void);
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
while !window.should_close() {
2014-07-27 21:10:43 +10:00
println!("{}", window.wait_events());
2014-07-27 18:55:37 +10:00
gl::Clear(gl::COLOR_BUFFER_BIT);
window.swap_buffers();
}
}