winit-sonoma-fix/examples/transparent.rs

27 lines
926 B
Rust
Raw Normal View History

2016-03-27 04:07:52 +11:00
extern crate winit;
fn main() {
let mut events_loop = winit::EventsLoop::new();
2017-01-29 01:45:01 +11:00
let window = winit::WindowBuilder::new().with_decorations(false)
.with_transparency(true)
2017-01-29 01:45:01 +11:00
.build(&events_loop).unwrap();
window.set_title("A fantastic window!");
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.");
}
2017-01-29 01:45:01 +11:00
events_loop.run_forever(|event| {
2015-06-16 21:48:08 +10:00
println!("{:?}", event);
match event {
winit::Event::WindowEvent { event: winit::WindowEvent::Closed, .. } => winit::ControlFlow::Break,
_ => winit::ControlFlow::Continue,
2015-06-16 21:48:08 +10:00
}
2017-01-29 01:45:01 +11:00
});
}