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
commit 7f1cd54b80
Notes: sideshowbarker 2024-07-18 05:18:04 +09:00
7 changed files with 45 additions and 0 deletions

View file

@ -77,6 +77,7 @@ public:
virtual void gl_depth_range(GLdouble min, GLdouble max) = 0;
virtual void gl_depth_func(GLenum func) = 0;
virtual void gl_polygon_mode(GLenum face, GLenum mode) = 0;
virtual void gl_fogfv(GLenum pname, GLfloat* params) = 0;
virtual void present() = 0;
};