aboutsummaryrefslogtreecommitdiffstats
path: root/resources/gltypes.h
blob: 3272b72ab479a0755e78fc6b968c82c66369a649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//we need only the basic gl types for the cl-gl interoperability
//extracted from gl3.h

typedef unsigned int GLenum;
typedef unsigned char GLboolean;
typedef unsigned int GLbitfield;
typedef signed char GLbyte;
typedef short GLshort;
typedef int GLint;
typedef int GLsizei;
typedef unsigned char GLubyte;
typedef unsigned short GLushort;
typedef unsigned int GLuint;
typedef float GLfloat;
typedef float GLclampf;
typedef double GLdouble;
typedef double GLclampd;
typedef void GLvoid;