From 7de3aa9af2f33e83b30a61f644c766520d3290d0 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 13 Nov 2014 16:30:30 +0100 Subject: [PATCH] Reverted the last commit, apparently not every GLEW contains required definitions. --- common/gal/opengl/opengl_compositor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/opengl/opengl_compositor.cpp b/common/gal/opengl/opengl_compositor.cpp index 4aa967d960..dd7c84aeb3 100644 --- a/common/gal/opengl/opengl_compositor.cpp +++ b/common/gal/opengl/opengl_compositor.cpp @@ -55,7 +55,7 @@ void OPENGL_COMPOSITOR::Initialize() // We need framebuffer objects for drawing the screen contents // Generate framebuffer and a depth buffer glGenFramebuffersEXT( 1, &m_framebuffer ); - glBindFramebufferEXT( GL_FRAMEBUFFER_EXT, m_framebuffer ); + glBindFramebufferEXT( GL_FRAMEBUFFER, m_framebuffer ); m_currentFbo = m_framebuffer; // Allocate memory for the depth buffer