Examples now using a support module to draw

This commit is contained in:
Tomaka17 2014-09-12 08:50:54 +02:00
parent 6b834baeda
commit 3cad622ee8
5 changed files with 47 additions and 49 deletions

View file

@ -1,12 +1,13 @@
#![feature(phase)]
#![feature(tuple_indexing)]
#[cfg(target_os = "android")]
#[phase(plugin, link)]
extern crate android_glue;
extern crate gl;
extern crate gl_init;
extern crate libc;
mod support;
#[cfg(target_os = "android")]
android_start!(main)
@ -32,17 +33,10 @@ fn main() {
fn run(window: gl_init::Window, color: (f32, f32, f32, f32)) {
unsafe { window.make_current() };
gl::load_with(|symbol| window.get_proc_address(symbol));
{
let win_size = window.get_inner_size().unwrap();
gl::Viewport(0, 0, win_size.val0() as libc::c_int, win_size.val1() as libc::c_int);
}
gl::ClearColor(color.val0(), color.val1(), color.val2(), color.val3());
let context = support::load(&window);
while !window.is_closed() {
gl::Clear(gl::COLOR_BUFFER_BIT);
context.draw_frame(color);
window.swap_buffers();
window.wait_events().collect::<Vec<gl_init::Event>>();