1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

LibGL: Implement glLightModelf and glLightModelfv

This commit is contained in:
Jelle Raaijmakers 2021-12-01 17:09:22 +01:00 committed by Andreas Kling
parent 0453cad46c
commit c2960e68a8
5 changed files with 49 additions and 1 deletions

View file

@ -101,6 +101,7 @@ public:
virtual void gl_line_width(GLfloat width) = 0;
virtual void gl_push_attrib(GLbitfield mask) = 0;
virtual void gl_pop_attrib() = 0;
virtual void gl_light_model(GLenum pname, GLfloat x, GLfloat y, GLfloat z, GLfloat w) = 0;
virtual void present() = 0;
};