1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:47:45 +00:00

LibGL: Implement glFogfv

This currently just sets the fog colour in the rasterizer.
This commit is contained in:
Jesse Buhagiar 2021-08-25 01:10:19 +10:00 committed by Ali Mohammad Pur
parent ffa7da0ca5
commit 7f1cd54b80
7 changed files with 45 additions and 0 deletions

View file

@ -374,6 +374,7 @@ GLAPI void glDrawElements(GLenum mode, GLsizei count, GLenum type, const void* i
GLAPI void glDepthRange(GLdouble nearVal, GLdouble farVal);
GLAPI void glDepthFunc(GLenum func);
GLAPI void glPolygonMode(GLenum face, GLenum mode);
GLAPI void glFogfv(GLenum mode, GLfloat* params);
#ifdef __cplusplus
}