mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
6a330a2894
* Fix bug causing RedrawRequested events to only get emitted every other iteration of the event loop. * Initialize simple_logger in examples. This PR's primary bug was discovered because a friend of mine reported that winit was emitting concerning log messages, which I'd never seen since none of the examples print out the log messages. This addresses that, to hopefully reduce the chance of bugs going unnoticed in the future. * Add changelog entry * Format
53 lines
1.4 KiB
Rust
53 lines
1.4 KiB
Rust
#[cfg(not(target_arch = "wasm32"))]
|
|
fn main() {
|
|
use winit::{
|
|
event::{Event, WindowEvent},
|
|
event_loop::{ControlFlow, EventLoop},
|
|
window::WindowBuilder,
|
|
};
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
enum CustomEvent {
|
|
Timer,
|
|
}
|
|
|
|
simple_logger::init().unwrap();
|
|
let event_loop = EventLoop::<CustomEvent>::with_user_event();
|
|
|
|
let _window = WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.build(&event_loop)
|
|
.unwrap();
|
|
|
|
// `EventLoopProxy` allows you to dispatch custom events to the main Winit event
|
|
// loop from any thread.
|
|
let event_loop_proxy = event_loop.create_proxy();
|
|
|
|
std::thread::spawn(move || {
|
|
// Wake up the `event_loop` once every second and dispatch a custom event
|
|
// from a different thread.
|
|
loop {
|
|
std::thread::sleep(std::time::Duration::from_secs(1));
|
|
event_loop_proxy.send_event(CustomEvent::Timer).ok();
|
|
}
|
|
});
|
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
*control_flow = ControlFlow::Wait;
|
|
|
|
match event {
|
|
Event::UserEvent(event) => println!("user event: {:?}", event),
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CloseRequested,
|
|
..
|
|
} => *control_flow = ControlFlow::Exit,
|
|
_ => (),
|
|
}
|
|
});
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
fn main() {
|
|
panic!("This example is not supported on web.");
|
|
}
|