aboutsummaryrefslogtreecommitdiffstats
path: root/examples/window.rs
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-08-07 08:53:21 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-08-07 08:53:21 +0200
commit92f90220a485caf71947c6bc49e134f555f10235 (patch)
treed5d425f586d0044e8834f1b7fe485f2a82633fa5 /examples/window.rs
parent752c721ae1337e770512cd7d01e0b5ec7eff6d00 (diff)
downloadglutin-92f90220a485caf71947c6bc49e134f555f10235.tar.gz
glutin-92f90220a485caf71947c6bc49e134f555f10235.zip
Fix events handling in examples
Diffstat (limited to 'examples/window.rs')
-rw-r--r--examples/window.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/window.rs b/examples/window.rs
index c366ee0..07f5a84 100644
--- a/examples/window.rs
+++ b/examples/window.rs
@@ -19,10 +19,9 @@ fn main() {
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
while !window.is_closed() {
- println!("{}", window.wait_events().collect::<Vec<init::Event>>());
-
gl::Clear(gl::COLOR_BUFFER_BIT);
-
window.swap_buffers();
+
+ println!("{}", window.wait_events().collect::<Vec<init::Event>>());
}
}