winit-sonoma-fix/examples/transparent.rs

21 lines
635 B
Rust
Raw Normal View History

2016-03-26 18:07:52 +01:00
extern crate winit;
fn main() {
let mut events_loop = winit::EventsLoop::new();
2017-01-28 15:45:01 +01:00
let window = winit::WindowBuilder::new().with_decorations(false)
.with_transparency(true)
2017-01-28 15:45:01 +01:00
.build(&events_loop).unwrap();
window.set_title("A fantastic window!");
2017-01-28 15:45:01 +01:00
events_loop.run_forever(|event| {
2015-06-16 13:48:08 +02:00
println!("{:?}", event);
match event {
winit::Event::WindowEvent { event: winit::WindowEvent::CloseRequested, .. } => winit::ControlFlow::Break,
_ => winit::ControlFlow::Continue,
2015-06-16 13:48:08 +02:00
}
2017-01-28 15:45:01 +01:00
});
}