aboutsummaryrefslogtreecommitdiff
path: root/src/graphics
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-10-29 13:58:14 +0200
committerdec05eba <dec05eba@protonmail.com>2021-10-29 13:58:14 +0200
commit5476dd7d21875d68a4d957f441d34eee2a9e2b37 (patch)
tree87036daac6884287108535fed77f2cd100928d18 /src/graphics
parent14e3617736c63bd22b0785ad418acef825db221f (diff)
Fix multiple vertex buffers using the same data
Need to call glVertexPointer/glTexCoordPointer/glColorPointer every time we render.
Diffstat (limited to 'src/graphics')
-rw-r--r--src/graphics/vertex_buffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/graphics/vertex_buffer.c b/src/graphics/vertex_buffer.c
index aa4fdbb..9203d63 100644
--- a/src/graphics/vertex_buffer.c
+++ b/src/graphics/vertex_buffer.c
@@ -104,6 +104,7 @@ void mgl_vertex_buffer_draw(mgl_context *context, mgl_vertex_buffer *vertex_buff
context->gl.glBindTexture(GL_TEXTURE_2D, texture ? texture->id : 0);
context->gl.glBindBuffer(GL_ARRAY_BUFFER, vertex_buffer->id);
+ mgl_vertex_buffer_set_gl_buffer_pointers(context);
context->gl.glDrawArrays(mgl_primitive_type_to_gl_mode(vertex_buffer->primitive_type), 0, vertex_buffer->vertex_count);
context->gl.glBindBuffer(GL_ARRAY_BUFFER, 0);
context->gl.glBindTexture(GL_TEXTURE_2D, 0);