From 6757447f1bfe21288b9754583c7f7256836cc9ce Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 30 Apr 2016 16:28:35 +0300 Subject: [PATCH] Enabled printing of OpenGL startup log on all platforms --- src/gl/system/gl_framebuffer.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gl/system/gl_framebuffer.cpp b/src/gl/system/gl_framebuffer.cpp index ca8a5dc326..4a05c2d17b 100644 --- a/src/gl/system/gl_framebuffer.cpp +++ b/src/gl/system/gl_framebuffer.cpp @@ -130,12 +130,9 @@ void OpenGLFrameBuffer::InitializeState() if (first) { first=false; - // [BB] For some reason this crashes, if compiled with MinGW and optimization. Has to be investigated. -#ifdef _MSC_VER gl_PrintStartupLog(); -#endif - } + glClearColor(0.0f, 0.0f, 0.0f, 0.0f); glClearDepth(1.0f); glDepthFunc(GL_LESS);