diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-27 10:55:37 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-27 11:41:26 +0200 |
commit | 1cc0447c5ea5beb92d53d71f3bdc51f0bca33cd2 (patch) | |
tree | 397adadc160bf085c53cfa8b27a2ef502da1d42f /examples | |
download | glutin-1cc0447c5ea5beb92d53d71f3bdc51f0bca33cd2.tar.gz glutin-1cc0447c5ea5beb92d53d71f3bdc51f0bca33cd2.zip |
Initial commit
Diffstat (limited to 'examples')
-rw-r--r-- | examples/window.rs | 23 |
1 files changed, 23 insertions, 0 deletions
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(); + } +} |