mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00
LibGL: Implement glDrawArrays
This commit is contained in:
parent
b9261ade52
commit
e64d0d43d2
5 changed files with 147 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue