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