diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-01-19 13:46:30 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-01-19 13:46:30 +0100 |
commit | d48ccb381a99948f05bf09ee3a6bf0580d77392d (patch) | |
tree | 92fd34cea53e758cbb8202bfe5c0ef4e557b580c /examples | |
parent | b6f3bfa76811db8c249af08066bfb37bb1385165 (diff) | |
parent | 8fcd6767148eaa3a516c58d16238d842ef32d26a (diff) | |
download | glutin-d48ccb381a99948f05bf09ee3a6bf0580d77392d.tar.gz glutin-d48ccb381a99948f05bf09ee3a6bf0580d77392d.zip |
Merge pull request #213 from tomaka/permanent-iterators
Iterators returned by wait_events and poll_events are now persistent
Diffstat (limited to 'examples')
-rw-r--r-- | examples/fullscreen.rs | 2 | ||||
-rw-r--r-- | examples/multiwindow.rs | 2 | ||||
-rw-r--r-- | examples/window.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/fullscreen.rs b/examples/fullscreen.rs index 7c2ece8..c07edaa 100644 --- a/examples/fullscreen.rs +++ b/examples/fullscreen.rs @@ -47,6 +47,6 @@ fn main() { context.draw_frame((0.0, 1.0, 0.0, 1.0)); window.swap_buffers(); - println!("{:?}", window.wait_events().collect::<Vec<glutin::Event>>()); + println!("{:?}", window.wait_events().next()); } } diff --git a/examples/multiwindow.rs b/examples/multiwindow.rs index cd57d2e..115d5f2 100644 --- a/examples/multiwindow.rs +++ b/examples/multiwindow.rs @@ -47,6 +47,6 @@ fn run(window: glutin::Window, color: (f32, f32, f32, f32)) { context.draw_frame(color); window.swap_buffers(); - window.wait_events().collect::<Vec<glutin::Event>>(); + window.wait_events().next(); } } diff --git a/examples/window.rs b/examples/window.rs index 37966c4..1d3b615 100644 --- a/examples/window.rs +++ b/examples/window.rs @@ -30,6 +30,6 @@ fn main() { context.draw_frame((0.0, 1.0, 0.0, 1.0)); window.swap_buffers(); - println!("{:?}", window.wait_events().collect::<Vec<glutin::Event>>()); + println!("{:?}", window.wait_events().next()); } } |