mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +00:00
LibGL: Implement glDrawArrays
This commit is contained in:
parent
b9261ade52
commit
e64d0d43d2
Notes:
sideshowbarker
2024-07-18 06:57:42 +09:00
Author: https://github.com/sunverwerth
Commit: e64d0d43d2
Pull-request: https://github.com/SerenityOS/serenity/pull/9382
Reviewed-by: https://github.com/alimpfard
5 changed files with 147 additions and 1 deletions
|
@ -361,6 +361,7 @@ GLAPI void glDisableClientState(GLenum cap);
|
|||
GLAPI void glVertexPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
|
||||
GLAPI void glColorPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
|
||||
GLAPI void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
|
||||
GLAPI void glDrawArrays(GLenum mode, GLint first, GLsizei count);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue