mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
LibGL: Implement glFogf
This commit is contained in:
parent
7f1cd54b80
commit
f55d2a22af
6 changed files with 27 additions and 0 deletions
|
@ -13,3 +13,8 @@ void glFogfv(GLenum pname, GLfloat* params)
|
|||
{
|
||||
g_gl_context->gl_fogfv(pname, params);
|
||||
}
|
||||
|
||||
void glFogf(GLenum pname, GLfloat param)
|
||||
{
|
||||
g_gl_context->gl_fogf(pname, param);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue