aboutsummaryrefslogtreecommitdiffstats
path: root/examples/window.rs
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-08-02 08:24:30 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-08-02 08:29:37 +0200
commit5dda16702164d59a75d8c36373cf29a8d7f4d58f (patch)
treec087244f783b60dff1baf46d7f7cc6f6d206fc50 /examples/window.rs
parent959613870c23e2ca26bee268c46f8062095c2382 (diff)
downloadglutin-5dda16702164d59a75d8c36373cf29a8d7f4d58f.tar.gz
glutin-5dda16702164d59a75d8c36373cf29a8d7f4d58f.zip
Add iterators for events and WindowBuilder
Diffstat (limited to 'examples/window.rs')
-rw-r--r--examples/window.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/window.rs b/examples/window.rs
index daa856b..c366ee0 100644
--- a/examples/window.rs
+++ b/examples/window.rs
@@ -3,9 +3,7 @@ extern crate libc;
extern crate gl;
fn main() {
- use std::default::Default;
-
- let window = init::Window::new(None, "Hello world!", &Default::default(), None).unwrap();
+ let window = init::Window::new().unwrap();
unsafe { window.make_current() };
@@ -21,7 +19,7 @@ fn main() {
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
while !window.is_closed() {
- println!("{}", window.wait_events());
+ println!("{}", window.wait_events().collect::<Vec<init::Event>>());
gl::Clear(gl::COLOR_BUFFER_BIT);