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

LibGL: Implement glFogi

This commit is contained in:
Jesse Buhagiar 2021-08-25 01:21:54 +10:00 committed by Ali Mohammad Pur
parent f55d2a22af
commit d73cc3d0eb
6 changed files with 27 additions and 0 deletions

View file

@ -18,3 +18,8 @@ void glFogf(GLenum pname, GLfloat param)
{
g_gl_context->gl_fogf(pname, param);
}
void glFogi(GLenum pname, GLint param)
{
g_gl_context->gl_fogi(pname, param);
}