NSGL: Remove enforcement of forward-compatible flag

This sharp corner should have been addressed a long time ago.
This commit is contained in:
Camilla Löwy 2019-05-19 20:51:50 +02:00
parent 57bf6b2f75
commit 0b01d850ed
2 changed files with 1 additions and 7 deletions

View File

@ -122,6 +122,7 @@ information on what to include when reporting a bug.
- Bugfix: The CMake config-file package used an absolute path and was not
relocatable (#1470)
- [X11] Bugfix: The CMake files did not check for the XInput headers (#1480)
- [NSGL] Removed enforcement of forward-compatible flag for core contexts
## Contact

View File

@ -194,13 +194,6 @@ GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window,
"NSGL: The targeted version of macOS does not support OpenGL 3.0 or 3.1 but may support 3.2 and above");
return GLFW_FALSE;
}
if (!ctxconfig->forward || ctxconfig->profile != GLFW_OPENGL_CORE_PROFILE)
{
_glfwInputError(GLFW_VERSION_UNAVAILABLE,
"NSGL: The targeted version of macOS only supports forward-compatible core profile contexts for OpenGL 3.2 and above");
return GLFW_FALSE;
}
}
// Context robustness modes (GL_KHR_robustness) are not yet supported by