mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 23:01:30 +11:00
f6587aed39
X11 and Wayland implementations are now half implemented, however both still do not correctly break from the inner blocking event dispatch functions when `wakeup` is called, which they should do.
30 lines
748 B
Rust
30 lines
748 B
Rust
extern crate winit;
|
|
|
|
fn main() {
|
|
let events_loop = winit::EventsLoop::new();
|
|
|
|
let window = winit::WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.build(&events_loop)
|
|
.unwrap();
|
|
|
|
let proxy = events_loop.create_proxy();
|
|
|
|
std::thread::spawn(move || {
|
|
// Wake up the `events_loop` once every second.
|
|
loop {
|
|
std::thread::sleep(std::time::Duration::from_secs(1));
|
|
proxy.wakeup().unwrap();
|
|
}
|
|
});
|
|
|
|
events_loop.run_forever(|event| {
|
|
println!("{:?}", event);
|
|
match event {
|
|
winit::Event::WindowEvent { event: winit::WindowEvent::Closed, .. } =>
|
|
events_loop.interrupt(),
|
|
_ => ()
|
|
}
|
|
});
|
|
}
|