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:
parent
6e64ad829a
commit
57b1dcbec9
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue