winit-sonoma-fix/examples/support/mod.rs

98 lines
2.5 KiB
Rust
Raw Normal View History

2014-10-05 04:17:02 +11:00
#![cfg(feature = "window")]
#[phase(plugin)]
extern crate gl_generator;
2014-09-21 19:33:09 +10:00
use glutin;
2014-09-12 18:20:15 +10:00
#[cfg(not(target_os = "android"))]
mod gl {
2014-10-22 17:04:13 +11:00
generate_gl_bindings! {
api: "gl",
profile: "core",
version: "1.1",
generator: "struct"
}
2014-09-12 18:20:15 +10:00
}
#[cfg(target_os = "android")]
mod gl {
pub use self::Gles1 as Gl;
2014-10-22 17:04:13 +11:00
generate_gl_bindings! {
api: "gles1",
profile: "core",
version: "1.1",
generator: "struct"
}
}
pub struct Context {
gl: gl::Gl
}
2014-09-21 19:33:09 +10:00
pub fn load(window: &glutin::Window) -> Context {
2014-11-06 01:22:21 +11:00
let gl = gl::Gl::load(window);
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());
Context { gl: gl }
}
impl Context {
2014-09-12 18:20:15 +10:00
#[cfg(not(target_os = "android"))]
pub fn draw_frame(&self, color: (f32, f32, f32, f32)) {
2014-11-06 01:22:21 +11:00
unsafe {
self.gl.ClearColor(color.0, color.1, color.2, color.3);
self.gl.Clear(gl::COLOR_BUFFER_BIT);
self.gl.Begin(gl::TRIANGLES);
self.gl.Color3f(1.0, 0.0, 0.0);
self.gl.Vertex2f(-0.5, -0.5);
self.gl.Color3f(0.0, 1.0, 0.0);
self.gl.Vertex2f(0.0, 0.5);
self.gl.Color3f(0.0, 0.0, 1.0);
self.gl.Vertex2f(0.5, -0.5);
self.gl.End();
self.gl.Flush();
}
2014-09-12 18:20:15 +10:00
}
#[cfg(target_os = "android")]
pub fn draw_frame(&self, color: (f32, f32, f32, f32)) {
unsafe {
2014-11-06 01:22:21 +11:00
self.gl.ClearColor(color.0, color.1, color.2, color.3);
self.gl.Clear(gl::COLOR_BUFFER_BIT);
self.gl.EnableClientState(gl::VERTEX_ARRAY);
self.gl.EnableClientState(gl::COLOR_ARRAY);
unsafe {
use std::mem;
self.gl.VertexPointer(2, gl::FLOAT, (mem::size_of::<f32>() * 5) as i32,
mem::transmute(VERTEX_DATA.as_slice().as_ptr()));
self.gl.ColorPointer(3, gl::FLOAT, (mem::size_of::<f32>() * 5) as i32,
mem::transmute(VERTEX_DATA.as_slice().as_ptr().offset(2)));
}
self.gl.DrawArrays(gl::TRIANGLES, 0, 3);
self.gl.DisableClientState(gl::VERTEX_ARRAY);
self.gl.DisableClientState(gl::COLOR_ARRAY);
self.gl.Flush();
2014-09-12 18:20:15 +10:00
}
}
}
2014-10-03 06:16:47 +10:00
#[cfg(target_os = "android")]
static VERTEX_DATA: [f32, ..15] = [
-0.5, -0.5, 1.0, 0.0, 0.0,
0.0, 0.5, 0.0, 1.0, 0.0,
0.5, -0.5, 0.0, 0.0, 1.0
];