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

LibGL: Implement glArrayElement

This commit is contained in:
Jesse Buhagiar 2022-03-10 00:11:35 +11:00 committed by Andreas Kling
parent 85985e2cf4
commit 6e9ea2f21f
4 changed files with 44 additions and 1 deletions

View file

@ -33,3 +33,8 @@ void glDrawElements(GLenum mode, GLsizei count, GLenum type, void const* indices
{
g_gl_context->gl_draw_elements(mode, count, type, indices);
}
void glArrayElement(GLint i)
{
g_gl_context->gl_array_element(i);
}