diff options
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/texture.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/graphics/texture.c b/src/graphics/texture.c index 0ae21cf..9ea9b12 100644 --- a/src/graphics/texture.c +++ b/src/graphics/texture.c @@ -122,9 +122,7 @@ int mgl_texture_update(mgl_texture *self, const unsigned char *data, int offset_ mgl_context *context = mgl_get_context(); context->gl.glBindTexture(GL_TEXTURE_2D, self->id); const mgl_texture_format texture_format = mgl_image_format_to_mgl_texture_format(format); - context->gl.glPixelStorei(GL_UNPACK_ALIGNMENT, 1); context->gl.glTexSubImage2D(GL_TEXTURE_2D, 0, offset_x, offset_y, width, height, mgl_texture_format_to_source_opengl_format(texture_format), GL_UNSIGNED_BYTE, data); - context->gl.glPixelStorei(GL_UNPACK_ALIGNMENT, 0); context->gl.glBindTexture(GL_TEXTURE_2D, 0); return 0; } |