winit-sonoma-fix/examples/transparent.rs

30 lines
778 B
Rust
Raw Normal View History

#[cfg(target_os = "android")]
#[macro_use]
extern crate android_glue;
2016-03-27 04:07:52 +11:00
extern crate winit;
#[cfg(target_os = "android")]
android_start!(main);
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
_ => ()
}
}
}