winit-sonoma-fix/examples/multiwindow.rs

53 lines
1.1 KiB
Rust
Raw Normal View History

2014-09-12 02:13:50 +10:00
#[cfg(target_os = "android")]
2015-01-08 19:28:22 +11:00
#[macro_use]
2014-09-12 02:13:50 +10:00
extern crate android_glue;
2014-09-21 19:33:09 +10:00
extern crate glutin;
2014-12-24 03:12:29 +11:00
use std::thread::Thread;
mod support;
2014-09-12 02:13:50 +10:00
#[cfg(target_os = "android")]
android_start!(main);
2014-09-12 02:13:50 +10:00
2014-10-05 04:17:02 +11:00
#[cfg(not(feature = "window"))]
fn main() { println!("This example requires glutin to be compiled with the `window` feature"); }
#[cfg(feature = "window")]
fn main() {
2014-09-21 19:33:09 +10:00
let window1 = glutin::Window::new().unwrap();
let window2 = glutin::Window::new().unwrap();
let window3 = glutin::Window::new().unwrap();
2015-01-10 09:06:14 +11:00
let t1 = Thread::scoped(move || {
run(window1, (0.0, 1.0, 0.0, 1.0));
});
2015-01-10 09:06:14 +11:00
let t2 = Thread::scoped(move || {
run(window2, (0.0, 0.0, 1.0, 1.0));
});
2015-01-10 09:06:14 +11:00
let t3 = Thread::scoped(move || {
run(window3, (1.0, 0.0, 0.0, 1.0));
});
2014-12-24 03:12:29 +11:00
t1.join();
t2.join();
t3.join();
}
2014-10-05 04:17:02 +11:00
#[cfg(feature = "window")]
2014-09-21 19:33:09 +10:00
fn run(window: glutin::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-09-21 19:33:09 +10:00
window.wait_events().collect::<Vec<glutin::Event>>();
}
}