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

LibGL: Add stub for glCopyTexSubImage2D

This commit is contained in:
Jesse Buhagiar 2022-03-25 22:50:36 +11:00 committed by Andreas Kling
parent 6e9ea2f21f
commit c08dfe063a
4 changed files with 21 additions and 1 deletions

View file

@ -681,6 +681,7 @@ GLAPI void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GL
GLAPI void glPointSize(GLfloat size);
GLAPI void glClipPlane(GLenum plane, GLdouble const* equation);
GLAPI void glArrayElement(GLint i);
GLAPI void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
#ifdef __cplusplus
}