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

LibGL: Add stub for glColorMaterial

This commit is contained in:
Jelle Raaijmakers 2022-01-09 23:01:19 +01:00 committed by Linus Groh
parent 6e64ad829a
commit 57b1dcbec9
2 changed files with 7 additions and 0 deletions

View file

@ -11,6 +11,12 @@
extern GL::GLContext* g_gl_context;
void glColorMaterial(GLenum face, GLenum mode)
{
// FIXME: implement
dbgln_if(GL_DEBUG, "glColorMaterial({:#x}, {:#x}): unimplemented", face, mode);
}
void glLightf(GLenum light, GLenum pname, GLfloat param)
{
// FIXME: implement