winit-sonoma-fix/examples/transparent.rs

23 lines
654 B
Rust
Raw Normal View History

2016-03-27 04:07:52 +11:00
extern crate winit;
fn resize_callback(width: u32, height: u32) {
println!("Window resized to {}x{}", width, height);
}
fn main() {
2016-03-27 04:07:52 +11:00
let mut window = winit::WindowBuilder::new().with_decorations(false)
.with_transparency(true)
.build().unwrap();
window.set_title("A fantastic window!");
window.set_window_resize_callback(Some(resize_callback as fn(u32, u32)));
2015-06-16 21:48:08 +10:00
for event in window.wait_events() {
println!("{:?}", event);
match event {
2016-03-27 04:07:52 +11:00
winit::Event::Closed => break,
2015-06-16 21:48:08 +10:00
_ => ()
}
}
}