mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
LibGL: Implement glTexEnvi
This commit is contained in:
parent
eea1b95ead
commit
e2f79c8b5f
Notes:
sideshowbarker
2024-07-17 21:11:03 +09:00
Author: https://github.com/gmta
Commit: e2f79c8b5f
Pull-request: https://github.com/SerenityOS/serenity/pull/11800
Reviewed-by: https://github.com/Quaker762
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/sunverwerth ✅
2 changed files with 6 additions and 0 deletions
|
@ -69,6 +69,11 @@ void glTexEnvf(GLenum target, GLenum pname, GLfloat param)
|
|||
g_gl_context->gl_tex_env(target, pname, param);
|
||||
}
|
||||
|
||||
void glTexEnvi(GLenum target, GLenum pname, GLint 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