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

LibGL: Make GLsizeiptr signed

The Khronos description of a "non-negative binary integer" does not mean
an unsigned type, just that it should not be negative.
This commit is contained in:
Jelle Raaijmakers 2023-01-03 16:55:40 +01:00 committed by Linus Groh
parent e7627af555
commit 62092a329d
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ typedef long GLintptr;
typedef unsigned int GLuint;
typedef int GLfixed;
typedef int GLsizei;
typedef unsigned long GLsizeiptr;
typedef long GLsizeiptr;
typedef void GLvoid;
typedef float GLfloat;
typedef double GLclampd;