mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 09:39:39 +00:00
LibGL: Implement glFogi
This commit is contained in:
parent
f55d2a22af
commit
d73cc3d0eb
Notes:
sideshowbarker
2024-07-18 05:17:56 +09:00
Author: https://github.com/Quaker762
Commit: d73cc3d0eb
Pull-request: https://github.com/SerenityOS/serenity/pull/9603
Reviewed-by: https://github.com/alimpfard ✅
6 changed files with 27 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue