mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:08:11 +00:00
LibGL: Implement glColorPointer
This commit is contained in:
parent
07b9cba6e6
commit
f52f40925c
5 changed files with 33 additions and 0 deletions
|
@ -13,3 +13,8 @@ void glVertexPointer(GLint size, GLenum type, GLsizei stride, const void* pointe
|
|||
{
|
||||
g_gl_context->gl_vertex_pointer(size, type, stride, pointer);
|
||||
}
|
||||
|
||||
void glColorPointer(GLint size, GLenum type, GLsizei stride, const void* pointer)
|
||||
{
|
||||
g_gl_context->gl_color_pointer(size, type, stride, pointer);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue