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