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

LibGL: Add buffer API stubs

No implemented functionality, but this makes it easier to see if
software is using this family of functions.
This commit is contained in:
Jelle Raaijmakers 2022-10-15 22:50:32 +02:00 committed by Linus Groh
parent 1c32d93a12
commit 03258f4c96
6 changed files with 80 additions and 1 deletions

View file

@ -28,9 +28,11 @@ typedef unsigned char GLboolean;
typedef short GLshort;
typedef unsigned short GLushort;
typedef int GLint;
typedef long GLintptr;
typedef unsigned int GLuint;
typedef int GLfixed;
typedef int GLsizei;
typedef unsigned long GLsizeiptr;
typedef void GLvoid;
typedef float GLfloat;
typedef double GLclampd;