1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

LibGL: Implement glDrawArrays

This commit is contained in:
Stephan Unverwerth 2021-08-13 15:22:29 +02:00 committed by Andreas Kling
parent b9261ade52
commit e64d0d43d2
5 changed files with 147 additions and 1 deletions

View file

@ -23,3 +23,8 @@ void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const void* poin
{
g_gl_context->gl_tex_coord_pointer(size, type, stride, pointer);
}
void glDrawArrays(GLenum mode, GLint first, GLsizei count)
{
g_gl_context->gl_draw_arrays(mode, first, count);
}