summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGL/GLVert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGL/GLVert.cpp')
-rw-r--r--Userland/Libraries/LibGL/GLVert.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGL/GLVert.cpp b/Userland/Libraries/LibGL/GLVert.cpp
index 3afdf36757..ab3ed82ff1 100644
--- a/Userland/Libraries/LibGL/GLVert.cpp
+++ b/Userland/Libraries/LibGL/GLVert.cpp
@@ -140,6 +140,11 @@ void glVertex4sv(const GLshort* v)
g_gl_context->gl_vertex(v[0], v[1], v[2], v[3]);
}
+void glTexCoord2f(GLfloat s, GLfloat t)
+{
+ g_gl_context->gl_tex_coord(s, t, 0.0f, 0.0f);
+}
+
void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
{
g_gl_context->gl_rotate(angle, x, y, z);