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

LibGL: Implement glGetTexLevelParameteriv

This commit is contained in:
Jelle Raaijmakers 2021-12-24 14:55:14 +01:00 committed by Andreas Kling
parent d83702cb92
commit dae63352a3
5 changed files with 29 additions and 0 deletions

View file

@ -580,6 +580,7 @@ GLAPI void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig,
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);
GLAPI void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint* params);
#ifdef __cplusplus
}