2014-07-27 10:55:37 +02:00
|
|
|
extern crate init = "gl-init-rs";
|
|
|
|
extern crate libc;
|
|
|
|
extern crate gl;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
use std::default::Default;
|
|
|
|
|
2014-07-27 20:38:27 +02:00
|
|
|
let window = init::Window::new(None, "Hello world!", &Default::default(), None).unwrap();
|
2014-07-27 10:55:37 +02:00
|
|
|
|
|
|
|
window.make_current();
|
|
|
|
|
|
|
|
gl::load_with(|symbol| window.get_proc_address(symbol) as *const libc::c_void);
|
|
|
|
|
2014-07-30 13:05:58 +02:00
|
|
|
let version = {
|
|
|
|
use std::c_str::CString;
|
|
|
|
unsafe { CString::new(gl::GetString(gl::VERSION) as *const i8, false) }
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("OpenGL version {}", version.as_str().unwrap());
|
|
|
|
|
2014-07-27 10:55:37 +02:00
|
|
|
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
|
|
|
|
|
|
|
|
while !window.should_close() {
|
2014-07-27 13:10:43 +02:00
|
|
|
println!("{}", window.wait_events());
|
2014-07-27 10:55:37 +02:00
|
|
|
|
2014-07-30 13:05:58 +02:00
|
|
|
println!("pos: {}", window.get_position());
|
|
|
|
|
2014-07-27 10:55:37 +02:00
|
|
|
gl::Clear(gl::COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
window.swap_buffers();
|
|
|
|
}
|
|
|
|
}
|