winit-sonoma-fix/examples/multiwindow.rs

51 lines
1.1 KiB
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;
2014-09-21 11:33:09 +02:00
extern crate glutin;
2015-04-02 22:04:17 +02:00
use std::thread;
2014-12-23 17:12:29 +01:00
mod support;
2014-09-11 18:13:50 +02:00
#[cfg(target_os = "android")]
android_start!(main);
2014-09-11 18:13:50 +02:00
fn main() {
2015-08-05 22:31:34 +02:00
let window1 = glutin::WindowBuilder::new().build().unwrap();
let window2 = glutin::WindowBuilder::new().build().unwrap();
let window3 = glutin::WindowBuilder::new().build().unwrap();
let t1 = thread::spawn(move || {
run(window1, (0.0, 1.0, 0.0, 1.0));
});
let t2 = thread::spawn(move || {
run(window2, (0.0, 0.0, 1.0, 1.0));
});
let t3 = thread::spawn(move || {
run(window3, (1.0, 0.0, 0.0, 1.0));
});
2014-12-23 17:12:29 +01:00
2015-01-18 19:51:23 +11:00
let _ = t1.join();
let _ = t2.join();
let _ = t3.join();
}
2014-09-21 11:33:09 +02:00
fn run(window: glutin::Window, color: (f32, f32, f32, f32)) {
2015-09-28 12:19:36 -04:00
let _ = unsafe { window.make_current() };
let context = support::load(&window);
2015-06-16 13:48:08 +02:00
for event in window.wait_events() {
context.draw_frame(color);
2015-09-28 12:19:36 -04:00
let _ = window.swap_buffers();
2014-08-07 09:32:13 +02:00
2015-06-16 13:48:08 +02:00
match event {
glutin::Event::Closed => break,
_ => ()
}
}
}