1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Moved OpenGL framework loading to NSGL module.

This commit is contained in:
Camilla Berglund 2013-05-02 22:41:09 +02:00
parent efe3ee8818
commit f27eca113e
2 changed files with 9 additions and 9 deletions

View File

@ -80,15 +80,6 @@ int _glfwPlatformInit(void)
{
_glfw.ns.autoreleasePool = [[NSAutoreleasePool alloc] init];
_glfw.nsgl.framework =
CFBundleGetBundleWithIdentifier(CFSTR("com.apple.opengl"));
if (_glfw.nsgl.framework == NULL)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"NSGL: Failed to locate OpenGL framework");
return GL_FALSE;
}
#if defined(_GLFW_USE_CHDIR)
changeToResourcesDirectory();
#endif

View File

@ -47,6 +47,15 @@ int _glfwInitContextAPI(void)
return GL_FALSE;
}
_glfw.nsgl.framework =
CFBundleGetBundleWithIdentifier(CFSTR("com.apple.opengl"));
if (_glfw.nsgl.framework == NULL)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"NSGL: Failed to locate OpenGL framework");
return GL_FALSE;
}
return GL_TRUE;
}