aboutsummaryrefslogtreecommitdiffstats
path: root/examples/fullscreen.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fullscreen.rs')
-rw-r--r--examples/fullscreen.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/fullscreen.rs b/examples/fullscreen.rs
index e5f8fd4..f05bf9d 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::<Vec<init::Event>>());
-
gl::Clear(gl::COLOR_BUFFER_BIT);
-
window.swap_buffers();
+
+ println!("{}", window.wait_events().collect::<Vec<init::Event>>());
}
}