mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-27 07:31:30 +11:00
28 lines
826 B
Rust
28 lines
826 B
Rust
extern crate winit;
|
|
|
|
fn main() {
|
|
let mut events_loop = winit::EventsLoop::new();
|
|
|
|
let _window = winit::WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.build(&events_loop)
|
|
.unwrap();
|
|
|
|
if cfg!(target_os = "linux") {
|
|
println!("Running this example under wayland may not display a window at all.\n\
|
|
This is normal and because this example does not actually draw anything in the window,\
|
|
thus the compositor does not display it.");
|
|
}
|
|
|
|
events_loop.run_forever(|event| {
|
|
println!("{:?}", event);
|
|
|
|
match event {
|
|
winit::Event::WindowEvent { event: winit::WindowEvent::Closed, .. } => {
|
|
winit::ControlFlow::Break
|
|
},
|
|
_ => winit::ControlFlow::Continue,
|
|
}
|
|
});
|
|
}
|