mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-23 04:11:46 +02:00
* Some minor changes that make the recent changes more backwards compatible. Mantis #21837
git-svn-id: trunk@21043 -
This commit is contained in:
parent
5b09fa8a8c
commit
e59be6884e
@ -87,6 +87,12 @@ Const
|
|||||||
{$ENDIF OS2}
|
{$ENDIF OS2}
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
|
type
|
||||||
|
TViewPortArray = array [0..3] of GLint;
|
||||||
|
T16dArray = array [0..15] of GLdouble;
|
||||||
|
T3dArray = array [0..2] of GLdouble;
|
||||||
|
T4pArray = array [0..3] of Pointer;
|
||||||
|
T4fArray = array [0..3] of GLfloat;
|
||||||
|
|
||||||
const
|
const
|
||||||
GLU_EXT_object_space_tess = 1;
|
GLU_EXT_object_space_tess = 1;
|
||||||
@ -283,7 +289,7 @@ Type
|
|||||||
PGLdouble = ^GLdouble;
|
PGLdouble = ^GLdouble;
|
||||||
PGLfloat = ^GLfloat;
|
PGLfloat = ^GLfloat;
|
||||||
PGLint = ^GLint;
|
PGLint = ^GLint;
|
||||||
PGLubyte = ^GLubyte;
|
PGLubyte = PAnsiChar; //< this is only used for strings in GLU
|
||||||
PGLUnurbs = ^GLUnurbs;
|
PGLUnurbs = ^GLUnurbs;
|
||||||
PGLUquadric = ^GLUquadric;
|
PGLUquadric = ^GLUquadric;
|
||||||
PGLUtesselator = ^GLUtesselator;
|
PGLUtesselator = ^GLUtesselator;
|
||||||
@ -293,6 +299,7 @@ Type
|
|||||||
GLUtesselatorObj = GLUtesselator;
|
GLUtesselatorObj = GLUtesselator;
|
||||||
GLUtriangulatorObj = GLUtesselator;
|
GLUtriangulatorObj = GLUtesselator;
|
||||||
_GLUfuncptr = procedure ;extdecl;
|
_GLUfuncptr = procedure ;extdecl;
|
||||||
|
TCallback = _GLUfuncptr;
|
||||||
|
|
||||||
{$IFDEF MORPHOS}
|
{$IFDEF MORPHOS}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user