winit-sonoma-fix/examples/window.rs

30 lines
618 B
Rust
Raw Normal View History

2014-09-11 18:13:50 +02:00
#[cfg(target_os = "android")]
2015-01-08 09:28:22 +01:00
#[macro_use]
2014-09-11 18:13:50 +02:00
extern crate android_glue;
extern crate winit;
2014-07-27 10:55:37 +02:00
2014-09-11 18:13:50 +02:00
#[cfg(target_os = "android")]
android_start!(main);
2014-09-11 18:13:50 +02:00
fn resize_callback(width: u32, height: u32) {
println!("Window resized to {}x{}", width, height);
}
2014-07-27 10:55:37 +02:00
fn main() {
let window = winit::WindowBuilder::new()
.with_title("A fantastic window!")
.with_window_resize_callback(resize_callback)
.build()
.unwrap();
2014-07-27 10:55:37 +02:00
2015-06-16 13:48:08 +02:00
for event in window.wait_events() {
println!("{:?}", event);
match event {
winit::Event::Closed => break,
2015-06-16 13:48:08 +02:00
_ => ()
}
2014-07-27 10:55:37 +02:00
}
}