From d6628419c9d7e77b709de5cdbe5d2fc01062f02c Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 22 Jul 2013 13:14:53 +0200 Subject: [PATCH] Changed rendering order of cached & noncached layers. --- common/gal/opengl/opengl_gal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/opengl/opengl_gal.cpp b/common/gal/opengl/opengl_gal.cpp index a76611c974..19d50d2244 100644 --- a/common/gal/opengl/opengl_gal.cpp +++ b/common/gal/opengl/opengl_gal.cpp @@ -425,8 +425,8 @@ void OPENGL_GAL::blitMainTexture( bool aIsClearFrameBuffer ) void OPENGL_GAL::EndDrawing() { - cachedManager.EndDrawing(); nonCachedManager.EndDrawing(); + cachedManager.EndDrawing(); // Draw the remaining contents, blit the main texture to the screen, swap the buffers glFlush();