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

LibGL: Implement glRectf and glRecti

This commit is contained in:
Jelle Raaijmakers 2021-12-24 14:53:32 +01:00 committed by Andreas Kling
parent 4a36d6b439
commit d83702cb92
5 changed files with 30 additions and 1 deletions

View file

@ -578,6 +578,8 @@ GLAPI void glPushAttrib(GLbitfield mask);
GLAPI void glPopAttrib();
GLAPI void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, GLubyte const* bitmap);
GLAPI void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
GLAPI void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
GLAPI void glRecti(GLint x1, GLint y1, GLint x2, GLint y2);
#ifdef __cplusplus
}