mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 10:48:53 +00:00
LibGL: Remove i686 data types in favor of 64-bit types
This commit is contained in:
parent
62092a329d
commit
456a8436b5
Notes:
sideshowbarker
2024-07-17 02:13:47 +09:00
Author: https://github.com/gmta
Commit: 456a8436b5
Pull-request: https://github.com/SerenityOS/serenity/pull/16793
Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 2 additions and 8 deletions
|
@ -28,8 +28,10 @@ typedef unsigned char GLboolean;
|
||||||
typedef short GLshort;
|
typedef short GLshort;
|
||||||
typedef unsigned short GLushort;
|
typedef unsigned short GLushort;
|
||||||
typedef int GLint;
|
typedef int GLint;
|
||||||
|
typedef long GLint64;
|
||||||
typedef long GLintptr;
|
typedef long GLintptr;
|
||||||
typedef unsigned int GLuint;
|
typedef unsigned int GLuint;
|
||||||
|
typedef unsigned long GLuint64;
|
||||||
typedef int GLfixed;
|
typedef int GLfixed;
|
||||||
typedef int GLsizei;
|
typedef int GLsizei;
|
||||||
typedef long GLsizeiptr;
|
typedef long GLsizeiptr;
|
||||||
|
@ -40,11 +42,3 @@ typedef float GLclampf;
|
||||||
typedef double GLdouble;
|
typedef double GLdouble;
|
||||||
typedef unsigned int GLenum;
|
typedef unsigned int GLenum;
|
||||||
typedef unsigned int GLbitfield;
|
typedef unsigned int GLbitfield;
|
||||||
|
|
||||||
#if defined(__x86_64__) || defined(__aarch64__)
|
|
||||||
typedef long GLint64;
|
|
||||||
typedef unsigned long GLuint64;
|
|
||||||
#else
|
|
||||||
typedef long long GLint64;
|
|
||||||
typedef unsigned long long GLuint64;
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue