tiny_gl/
types.rs

1use core::ffi::{c_char, c_float, c_int, c_uchar, c_uint};
2
3pub type GLenum = c_uint;
4pub type GLuint = c_uint;
5pub type GLchar = c_char;
6pub type GLint = c_int;
7pub type GLsizei = c_int;
8pub type GLsizeiptr = isize;
9pub type GLintptr = isize;
10pub type GLboolean = c_uchar;
11pub type GLbitfield = c_uint;
12pub type GLfloat = c_float;