1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibGL: Add stubs for glMaterialf and glMaterialfv

This commit is contained in:
Jelle Raaijmakers 2021-12-01 16:10:17 +01:00 committed by Andreas Kling
parent 4eb6295a57
commit 9dbc8d7e3c
5 changed files with 66 additions and 1 deletions

View file

@ -95,6 +95,7 @@ public:
virtual void gl_stencil_op_separate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass) = 0;
virtual void gl_normal(GLfloat nx, GLfloat ny, GLfloat nz) = 0;
virtual void gl_raster_pos(GLfloat x, GLfloat y, GLfloat z, GLfloat w) = 0;
virtual void gl_materialv(GLenum face, GLenum pname, GLfloat const* params) = 0;
virtual void present() = 0;
};