1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:57:34 +00:00

LibGL: Implement glRasterPos2i

This commit is contained in:
Jelle Raaijmakers 2021-12-01 15:53:55 +01:00 committed by Andreas Kling
parent 78d0674228
commit 4eb6295a57
6 changed files with 41 additions and 1 deletions

View file

@ -451,6 +451,7 @@ GLAPI void glStencilOp(GLenum sfail, GLenum dpfail, GLenum dppass);
GLAPI void glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
GLAPI void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz);
GLAPI void glNormal3fv(GLfloat const* v);
GLAPI void glRasterPos2i(GLint x, GLint y);
#ifdef __cplusplus
}