2014-09-12 02:13:50 +10:00
|
|
|
#![feature(phase)]
|
2014-09-12 16:50:54 +10:00
|
|
|
#![feature(tuple_indexing)]
|
2014-09-12 02:13:50 +10:00
|
|
|
|
|
|
|
#[cfg(target_os = "android")]
|
|
|
|
#[phase(plugin, link)]
|
|
|
|
extern crate android_glue;
|
|
|
|
|
2014-09-21 19:33:09 +10:00
|
|
|
extern crate glutin;
|
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")]
|
|
|
|
android_start!(main)
|
|
|
|
|
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() {
|
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();
|
2014-08-04 01:23:08 +10:00
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
run(window1, (0.0, 1.0, 0.0, 1.0));
|
|
|
|
});
|
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
run(window2, (0.0, 0.0, 1.0, 1.0));
|
|
|
|
});
|
2014-08-08 02:15:09 +10:00
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
run(window3, (1.0, 0.0, 0.0, 1.0));
|
|
|
|
});
|
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
|
|
|
|
|
|
|
while !window.is_closed() {
|
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
|
|
|
|
2014-09-21 19:33:09 +10:00
|
|
|
window.wait_events().collect::<Vec<glutin::Event>>();
|
2014-08-04 01:23:08 +10:00
|
|
|
}
|
|
|
|
}
|