mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:17:36 +00:00
LibGL: Implement glColorPointer
This commit is contained in:
parent
07b9cba6e6
commit
f52f40925c
5 changed files with 33 additions and 0 deletions
|
@ -77,6 +77,7 @@ public:
|
|||
virtual void gl_enable_client_state(GLenum cap) override;
|
||||
virtual void gl_disable_client_state(GLenum cap) override;
|
||||
virtual void gl_vertex_pointer(GLint size, GLenum type, GLsizei stride, const void* pointer) override;
|
||||
virtual void gl_color_pointer(GLint size, GLenum type, GLsizei stride, const void* pointer) override;
|
||||
|
||||
virtual void present() override;
|
||||
|
||||
|
@ -233,6 +234,7 @@ private:
|
|||
};
|
||||
|
||||
VertexAttribPointer m_client_vertex_pointer;
|
||||
VertexAttribPointer m_client_color_pointer;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue