Make winit backend exit on Super-Q

This commit is contained in:
Wesley Moore 2019-06-17 11:10:50 +10:00 committed by Victor Berger
parent f8f4f461c7
commit ac0566ca88
1 changed files with 18 additions and 7 deletions

View File

@ -1,7 +1,10 @@
use std::{
cell::RefCell,
rc::Rc,
sync::{atomic::AtomicBool, Arc, Mutex},
sync::{
atomic::{AtomicBool, Ordering},
Arc, Mutex,
},
};
use smithay::{
@ -134,7 +137,7 @@ pub fn run_winit(display: &mut Display, event_loop: &mut EventLoop<()>, log: Log
info!(log, "Initialization completed, starting the main loop.");
loop {
while running.load(Ordering::SeqCst) {
input.dispatch_new_events().unwrap();
// drawing logic
@ -178,11 +181,19 @@ pub fn run_winit(display: &mut Display, event_loop: &mut EventLoop<()>, log: Log
}
}
event_loop
if event_loop
.dispatch(Some(::std::time::Duration::from_millis(16)), &mut ())
.unwrap();
display.flush_clients();
window_map.borrow_mut().refresh();
.is_err()
{
running.store(false, Ordering::SeqCst);
} else {
display.flush_clients();
window_map.borrow_mut().refresh();
}
}
// Cleanup stuff
window_map.borrow_mut().clear();
Ok(())
}