1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +00:00

LibGL: Remove i686 data types in favor of 64-bit types

This commit is contained in:
Jelle Raaijmakers 2023-01-03 16:56:45 +01:00 committed by Linus Groh
parent 62092a329d
commit 456a8436b5

View file

@ -28,8 +28,10 @@ typedef unsigned char GLboolean;
typedef short GLshort;
typedef unsigned short GLushort;
typedef int GLint;
typedef long GLint64;
typedef long GLintptr;
typedef unsigned int GLuint;
typedef unsigned long GLuint64;
typedef int GLfixed;
typedef int GLsizei;
typedef long GLsizeiptr;
@ -40,11 +42,3 @@ typedef float GLclampf;
typedef double GLdouble;
typedef unsigned int GLenum;
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