Commit 7de3aa9a authored by Maciej Suminski's avatar Maciej Suminski

Reverted the last commit, apparently not every GLEW contains required definitions.

parent 1f8b7769
...@@ -55,7 +55,7 @@ void OPENGL_COMPOSITOR::Initialize() ...@@ -55,7 +55,7 @@ void OPENGL_COMPOSITOR::Initialize()
// We need framebuffer objects for drawing the screen contents // We need framebuffer objects for drawing the screen contents
// Generate framebuffer and a depth buffer // Generate framebuffer and a depth buffer
glGenFramebuffersEXT( 1, &m_framebuffer ); glGenFramebuffersEXT( 1, &m_framebuffer );
glBindFramebufferEXT( GL_FRAMEBUFFER_EXT, m_framebuffer ); glBindFramebufferEXT( GL_FRAMEBUFFER, m_framebuffer );
m_currentFbo = m_framebuffer; m_currentFbo = m_framebuffer;
// Allocate memory for the depth buffer // Allocate memory for the depth buffer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment