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

LibGL: Stub glPointSize

This commit is contained in:
Jelle Raaijmakers 2022-01-10 02:29:56 +01:00 committed by Linus Groh
parent 6363797e80
commit 03c1f1780d
2 changed files with 8 additions and 0 deletions

View file

@ -612,6 +612,7 @@ GLAPI void glTexGeni(GLenum coord, GLenum pname, GLint param);
GLAPI void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
GLAPI void glRecti(GLint x1, GLint y1, GLint x2, GLint y2);
GLAPI void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint* params);
GLAPI void glPointSize(GLfloat size);
#ifdef __cplusplus
}