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:
parent
401472c9a4
commit
6643775999
5 changed files with 20 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue