tiny-gl 0.2.0

A set of OpenGL bindings suitable for use in a demo. This crate does not use std.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use core::ffi::{c_char, c_float, c_int, c_uchar, c_uint};

pub type GLenum = c_uint;
pub type GLuint = c_uint;
pub type GLchar = c_char;
pub type GLint = c_int;
pub type GLsizei = c_int;
pub type GLsizeiptr = isize;
pub type GLintptr = isize;
pub type GLboolean = c_uchar;
pub type GLbitfield = c_uint;
pub type GLfloat = c_float;