From ccd0e65a0ddccd9c52d4c075ec1cad41ae7edb40 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 16 Nov 2021 23:05:49 +0100 Subject: Make unpack alignment byte-sized globally --- src/graphics/texture.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/graphics') 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; } -- cgit v1.2.3