1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

LibGL: Implement glTexCoordPointer

This commit is contained in:
Stephan Unverwerth 2021-08-13 13:54:51 +02:00 committed by Andreas Kling
parent f52f40925c
commit f776402632
5 changed files with 25 additions and 0 deletions

View file

@ -68,6 +68,7 @@ public:
virtual void gl_disable_client_state(GLenum cap) = 0;
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 present() = 0;
};