mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:37:34 +00:00
LibGL: Implement glTexCoord2f
This commit is contained in:
parent
4f324ba4d7
commit
e21ba0cd12
5 changed files with 19 additions and 0 deletions
|
@ -256,6 +256,7 @@ GLAPI void glHint(GLenum target, GLenum mode);
|
|||
GLAPI void glReadBuffer(GLenum mode);
|
||||
GLAPI void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels);
|
||||
GLAPI void glTexImage2D(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* data);
|
||||
GLAPI void glTexCoord2f(GLfloat s, GLfloat t);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue