From 1cc0447c5ea5beb92d53d71f3bdc51f0bca33cd2 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Sun, 27 Jul 2014 10:55:37 +0200 Subject: Initial commit --- examples/window.rs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 examples/window.rs (limited to 'examples') diff --git a/examples/window.rs b/examples/window.rs new file mode 100644 index 0000000..eeb500e --- /dev/null +++ b/examples/window.rs @@ -0,0 +1,23 @@ +extern crate init = "gl-init-rs"; +extern crate libc; +extern crate gl; + +fn main() { + use std::default::Default; + + let window = init::Window::new(None, "Hello world!", &Default::default()).unwrap(); + + 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() { + window.wait_events(); + + gl::Clear(gl::COLOR_BUFFER_BIT); + + window.swap_buffers(); + } +} -- cgit v1.2.3