From c750528f7d6898a482b47a0633965ea000b5e700 Mon Sep 17 00:00:00 2001 From: Ruben De Visscher Date: Sun, 4 Aug 2013 12:54:18 +0200 Subject: [PATCH] Removed check for forward compatibility on Mac OS X when version 3.2 is requested --- src/nsgl_context.m | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/nsgl_context.m b/src/nsgl_context.m index 2c3dcca6..f632565d 100644 --- a/src/nsgl_context.m +++ b/src/nsgl_context.m @@ -97,15 +97,6 @@ int _glfwCreateContext(_GLFWwindow* window, if (wndconfig->glMajor > 2) { - if (!wndconfig->glForward) - { - _glfwInputError(GLFW_VERSION_UNAVAILABLE, - "NSOpenGL: The targeted version of OS X only " - "supports OpenGL 3.2 and later versions if they " - "are forward-compatible"); - return GL_FALSE; - } - if (wndconfig->glProfile != GLFW_OPENGL_CORE_PROFILE) { _glfwInputError(GLFW_VERSION_UNAVAILABLE,