mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:47:35 +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:
parent
e7627af555
commit
62092a329d
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue