aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/vertex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/vertex.c')
-rw-r--r--src/graphics/vertex.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/graphics/vertex.c b/src/graphics/vertex.c
index 8e9b5b9..b45f38c 100644
--- a/src/graphics/vertex.c
+++ b/src/graphics/vertex.c
@@ -8,6 +8,10 @@ void mgl_vertices_draw(mgl_context *context, const mgl_vertex *vertices, size_t
context->gl.glPushMatrix();
context->gl.glTranslatef(position.x, position.y, 0.0f);
+ context->gl.glMatrixMode(GL_TEXTURE);
+ context->gl.glLoadIdentity();
+ context->gl.glMatrixMode(GL_MODELVIEW);
+
context->gl.glVertexPointer(2, GL_FLOAT, sizeof(mgl_vertex), (void*)&vertices[0].position);
context->gl.glTexCoordPointer(2, GL_FLOAT, sizeof(mgl_vertex), (void*)&vertices[0].texcoords);
context->gl.glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(mgl_vertex), (void*)&vertices[0].color);