From 3cad622ee846600bbb5bd38992113198fd9737d7 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Fri, 12 Sep 2014 08:50:54 +0200 Subject: Examples now using a support module to draw --- examples/fullscreen.rs | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) (limited to 'examples/fullscreen.rs') diff --git a/examples/fullscreen.rs b/examples/fullscreen.rs index f0aab47..1df5124 100644 --- a/examples/fullscreen.rs +++ b/examples/fullscreen.rs @@ -1,15 +1,16 @@ #![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; use std::io::stdio::stdin; +mod support; + #[cfg(target_os = "android")] android_start!(main) @@ -38,24 +39,11 @@ fn main() { unsafe { window.make_current() }; - gl::load_with(|symbol| window.get_proc_address(symbol)); - - let version = { - use std::c_str::CString; - unsafe { CString::new(gl::GetString(gl::VERSION) as *const i8, false) } - }; - - println!("OpenGL version {}", version.as_str().unwrap()); - { - 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(0.0, 1.0, 0.0, 1.0); + let context = support::load(&window); while !window.is_closed() { - gl::Clear(gl::COLOR_BUFFER_BIT); + context.draw_frame((0.0, 1.0, 0.0, 1.0)); window.swap_buffers(); println!("{}", window.wait_events().collect::>()); -- cgit v1.2.3