mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +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
|
@ -69,6 +69,7 @@ public:
|
|||
virtual void gl_vertex_pointer(GLint size, GLenum type, GLsizei stride, const void* pointer) = 0;
|
||||
virtual void gl_color_pointer(GLint size, GLenum type, GLsizei stride, const void* pointer) = 0;
|
||||
virtual void gl_tex_coord_pointer(GLint size, GLenum type, GLsizei stride, const void* pointer) = 0;
|
||||
virtual void gl_draw_arrays(GLenum mode, GLint first, GLsizei count) = 0;
|
||||
|
||||
virtual void present() = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue