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

LibGL: Add stub glClipPlane

This commit is contained in:
Jesse Buhagiar 2022-03-09 22:27:02 +11:00 committed by Andreas Kling
parent c9f44c746a
commit b928fdc3ee
4 changed files with 27 additions and 1 deletions

View file

@ -189,3 +189,8 @@ void glPopAttrib()
{
g_gl_context->gl_pop_attrib();
}
void glClipPlane(GLenum plane, GLdouble const* equation)
{
g_gl_context->gl_clip_plane(plane, equation);
}