winit-sonoma-fix/examples/multiwindow.rs

45 lines
917 B
Rust
Raw Normal View History

2014-09-12 02:13:50 +10:00
#![feature(phase)]
#![feature(tuple_indexing)]
2014-09-12 02:13:50 +10:00
#[cfg(target_os = "android")]
#[phase(plugin, link)]
extern crate android_glue;
2014-08-13 21:42:59 +10:00
extern crate gl_init;
mod support;
2014-09-12 02:13:50 +10:00
#[cfg(target_os = "android")]
android_start!(main)
fn main() {
2014-08-13 21:42:59 +10:00
let window1 = gl_init::Window::new().unwrap();
let window2 = gl_init::Window::new().unwrap();
let window3 = gl_init::Window::new().unwrap();
spawn(proc() {
run(window1, (0.0, 1.0, 0.0, 1.0));
});
spawn(proc() {
run(window2, (0.0, 0.0, 1.0, 1.0));
});
spawn(proc() {
run(window3, (1.0, 0.0, 0.0, 1.0));
});
}
2014-08-13 21:42:59 +10:00
fn run(window: gl_init::Window, color: (f32, f32, f32, f32)) {
unsafe { window.make_current() };
let context = support::load(&window);
while !window.is_closed() {
context.draw_frame(color);
window.swap_buffers();
2014-08-07 17:32:13 +10:00
2014-08-13 21:42:59 +10:00
window.wait_events().collect::<Vec<gl_init::Event>>();
}
}