glitz 0.4.0

GL Bindings thing.
Documentation
#![allow(unused)]
#![allow(non_camel_case_types)]

use chlorine::*;

pub type void = c_void;
pub type GLenum = c_uint;
pub type GLboolean = c_uchar;
pub type GLbitfield = c_uint;
//pub type GLbyte = i8;
pub type GLubyte = u8;
//pub type GLshort = i16;
//pub type GLushort = u16;
pub type GLint = c_int;
pub type GLuint = c_uint;
//pub type GLclampx = i32;
pub type GLsizei = c_int;
pub type GLfloat = c_float;
//pub type GLclampf = c_float;
pub type GLdouble = c_double;
//pub type GLclampd = c_double;
pub type GLchar = c_char;
//pub type GLcharARB = c_char;
//pub type GLhalf = u16;
//pub type GLhalfARB = u16;
//pub type GLfixed = i32;
pub type GLintptr = intptr_t;
//pub type GLintptrARB = intptr_t;
pub type GLsizeiptr = ssize_t;
//pub type GLsizeiptrARB = ssize_t;
//pub type GLint64 = i64;
//pub type GLint64EXT = i64;
//pub type GLuint64 = u64;
//pub type GLuint64EXT = u64;

#[allow(clippy::upper_case_acronyms)]
pub type GLDEBUGPROC = unsafe extern "system" fn(
  source: GLenum,
  type_: GLenum,
  id: GLuint,
  severity: GLenum,
  length: GLsizei,
  message: *const GLchar,
  userParam: *const c_void,
);
//pub type GLDEBUGPROCARB = GLDEBUGPROC;
//pub type GLDEBUGPROCKHR = GLDEBUGPROC;

//pub type GLDEBUGPROCAMD = unsafe extern "system" fn(id: GLuint,
// category: GLenum, severity: GLenum, length: GLsizei, message: *const
// GLchar, userParam: *mut c_void);