summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f4fc3b4)
raw | patch | inline | side by side (parent: f4fc3b4)
author | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Mon, 19 Feb 2018 16:39:22 +0000 (19:39 +0300) | ||
committer | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Sat, 17 Mar 2018 00:04:26 +0000 (02:04 +0200) |
src/lib/nanogl/nanoGL.pas | patch | blob | history |
index d438beb4ae8a608a6406a3072d67bbbf10d01651..f63e9ce1d49c272b64296f28a4c5ac92b83ffd85 100644 (file)
{$ENDIF}
type
- GLenum = Cardinal; PGLenum = ^GLenum;
- GLboolean = Byte; PGLboolean = ^GLboolean;
- GLbitfield = Cardinal; PGLbitfield = ^GLbitfield;
- GLbyte = ShortInt; PGLbyte = ^GLbyte;
- GLshort = SmallInt; PGLshort = ^GLshort;
- GLint = Integer; PGLint = ^GLint;
- GLsizei = Integer; PGLsizei = ^GLsizei;
- GLubyte = Byte; PGLubyte = ^GLubyte;
- GLushort = Word; PGLushort = ^GLushort;
- GLuint = Cardinal; PGLuint = ^GLuint;
- GLfloat = Single; PGLfloat = ^GLfloat;
- GLclampf = Single; PGLclampf = ^GLclampf;
- GLdouble = Double; PGLdouble = ^GLdouble;
- GLclampd = Double; PGLclampd = ^GLclampd;
-{ GLvoid = void; } PGLvoid = Pointer;
- PPGLvoid = ^PGLvoid;
- GLfixed = Integer; PGLfixed = ^Integer;
- GLclampx = Integer; PGLclampx = ^Integer;
+ GLenum = cuint; PGLenum = ^GLenum;
+ GLboolean = cuchar; PGLboolean = ^GLboolean;
+ GLbitfield = cuint; PGLbitfield = ^GLbitfield;
+ GLbyte = cschar; PGLbyte = ^GLbyte;
+ GLshort = cshort; PGLshort = ^GLshort;
+ GLint = cint; PGLint = ^GLint;
+ GLsizei = cint; PGLsizei = ^GLsizei;
+ GLubyte = cuchar; PGLubyte = ^GLubyte;
+ GLushort = cushort; PGLushort = ^GLushort;
+ GLuint = cuint; PGLuint = ^GLuint;
+ GLfloat = cfloat; PGLfloat = ^GLfloat;
+ GLclampf = cfloat; PGLclampf = ^GLclampf;
+ GLdouble = cdouble; PGLdouble = ^GLdouble;
+ GLclampd = cdouble; PGLclampd = ^GLclampd;
+{ GLvoid = void; } PGLvoid = Pointer; PPGLvoid = ^PGLvoid;
+ GLfixed = cint; PGLfixed = ^Integer;
+ GLclampx = cint; PGLclampx = ^Integer;
TGLenum = GLenum;
TGLboolean = GLboolean;