From 1dceadbbf526d76c33023f7545702bdaf93452d7 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 16 Jan 2016 10:02:27 -0800 Subject: [PATCH] OpenGL: Remove lingering reference to glPixelStorei --- src/platform/opengl/gles2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/platform/opengl/gles2.c b/src/platform/opengl/gles2.c index f79d98134..2ca0b000e 100644 --- a/src/platform/opengl/gles2.c +++ b/src/platform/opengl/gles2.c @@ -287,7 +287,6 @@ void GBAGLES2ContextPostFrame(struct VideoBackend* v, const void* frame) { #else glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, VIDEO_HORIZONTAL_PIXELS, VIDEO_VERTICAL_PIXELS, 0, GL_RGBA, GL_UNSIGNED_BYTE, frame); #endif - glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); } void GBAGLES2ContextCreate(struct GBAGLES2Context* context) {