mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:07:46 +00:00
LibGL: Implement glArrayElement
This commit is contained in:
parent
85985e2cf4
commit
6e9ea2f21f
4 changed files with 44 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue