Browse Source

* mantis #33075, EGLINT always 32-bit

git-svn-id: trunk@38045 -
marco 7 years ago
parent
commit
c98214c348
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/opengles/src/gles20.pas

+ 2 - 2
packages/opengles/src/gles20.pas

@@ -57,9 +57,9 @@ Type
 type
 type
   PEGLConfig  = ^EGLConfig;
   PEGLConfig  = ^EGLConfig;
   PEGLint  = ^EGLint;
   PEGLint  = ^EGLint;
-     EGLint = {$ifdef win64}int64{$else}longint{$endif}; // Why int64 only on win64 and not even on 64-bit linux???
+  EGLint = longint;
 
 
-     EGLConfig = pointer;
+  EGLConfig = pointer;
 
 
   { EGL Types  }
   { EGL Types  }
   { EGLint is defined in eglplatform.h  }
   { EGLint is defined in eglplatform.h  }