From 94911b61a600723bf14f9fc80bbe190a0ba0298c Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Wed, 16 Oct 2013 00:04:01 +0200 Subject: [PATCH] Revert "Always request OpenGL Core profile" This reverts commit 34d41031113851e2b2aee2812e8adbc6bec93b55. Turns out we need at least GLSL 1.50, for which we'd have to throw our OpenGL 2.0 compatibility in the water. Nope, not yet. --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index ce42784b..5425e772 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -81,7 +81,6 @@ int rgssThreadFun(void *userdata) /* Setup GL context */ SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); if (threadData->config.debugMode) SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG);