diff --git a/examples/fullscreen.rs b/examples/fullscreen.rs index e5f8fd4f..f05bf9dd 100644 --- a/examples/fullscreen.rs +++ b/examples/fullscreen.rs @@ -41,10 +41,9 @@ fn main() { gl::ClearColor(0.0, 1.0, 0.0, 1.0); while !window.is_closed() { - println!("{}", window.wait_events().collect::>()); - gl::Clear(gl::COLOR_BUFFER_BIT); - window.swap_buffers(); + + println!("{}", window.wait_events().collect::>()); } } diff --git a/examples/multiwindow.rs b/examples/multiwindow.rs index eeaa7d60..2ae9c318 100644 --- a/examples/multiwindow.rs +++ b/examples/multiwindow.rs @@ -23,10 +23,9 @@ fn run(window: init::Window, color: (f32, f32, f32, f32)) { gl::ClearColor(color.val0(), color.val1(), color.val2(), color.val3()); while !window.is_closed() { - window.wait_events().collect::>(); - gl::Clear(gl::COLOR_BUFFER_BIT); - window.swap_buffers(); + + window.wait_events().collect::>(); } } diff --git a/examples/window.rs b/examples/window.rs index c366ee0a..07f5a84a 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::>()); - gl::Clear(gl::COLOR_BUFFER_BIT); - window.swap_buffers(); + + println!("{}", window.wait_events().collect::>()); } }