diff options
Diffstat (limited to 'Userland/Libraries/LibGL/GLVert.cpp')
-rw-r--r-- | Userland/Libraries/LibGL/GLVert.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGL/GLVert.cpp b/Userland/Libraries/LibGL/GLVert.cpp index 060b2b059a..81567e6132 100644 --- a/Userland/Libraries/LibGL/GLVert.cpp +++ b/Userland/Libraries/LibGL/GLVert.cpp @@ -145,6 +145,11 @@ void glTexCoord2f(GLfloat s, GLfloat t) g_gl_context->gl_tex_coord(s, t, 0.0f, 0.0f); } +void glTexCoord4fv(const GLfloat* v) +{ + g_gl_context->gl_tex_coord(v[0], v[1], v[2], v[3]); +} + void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) { g_gl_context->gl_rotate(angle, x, y, z); |