Changeset 368
- Timestamp:
- 05/08/11 15:47:22 (1 year ago)
- Files:
-
- trunk/gl/gl.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gl/gl.d
r196 r368 27 27 import c.gl.glext; 28 28 private import std.loader; 29 public import c.gl._types; 29 30 30 31 /* … … 325 326 // Buffers, Pixel Drawing/Reading 326 327 const GLuint GL_NONE = 0x0; 327 const GLuint GL_LEFT = 0x0406; 328 const GLuint GL_LEFT = 0x0406; 328 329 const GLuint GL_RIGHT = 0x0407; 329 330 //const GLuint GL_FRONT = 0x0404; … … 1026 1027 const GLuint GL_CONVOLUTION_BORDER_COLOR = 0x8154; 1027 1028 1028 /*1029 * Types1030 */1031 alias uint GLenum;1032 alias ubyte GLboolean;1033 alias uint GLbitfield;1034 alias void GLvoid;1035 alias byte GLbyte;1036 alias short GLshort;1037 alias int GLint;1038 alias ubyte GLubyte;1039 alias ushort GLushort;1040 alias uint GLuint;1041 alias int GLsizei;1042 alias float GLfloat;1043 alias float GLclampf;1044 alias double GLdouble;1045 alias double GLclampd;1046 alias char GLchar;1047 alias ptrdiff_t GLintptr;1048 alias ptrdiff_t GLsizeiptr;1049 1029 1050 1030 /*
