1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

LibGL: Add stub for glCopyTexImage2D

This commit is contained in:
Jelle Raaijmakers 2021-12-01 17:58:49 +01:00 committed by Andreas Kling
parent 401472c9a4
commit 6643775999
5 changed files with 20 additions and 1 deletions

View file

@ -56,3 +56,8 @@ void glTexEnvf(GLenum target, GLenum pname, GLfloat param)
{
g_gl_context->gl_tex_env(target, pname, param);
}
void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
{
g_gl_context->gl_copy_tex_image_2d(target, level, internalformat, x, y, width, height, border);
}