Renamed context API init/terminate functions.

This commit is contained in:
Camilla Berglund
2013-01-15 20:49:29 +01:00
parent a8ea120cae
commit 38947b37af
7 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -101,7 +101,7 @@ int _glfwPlatformInit(void)
_glfwInitJoysticks();
if (!_glfwInitOpenGL())
if (!_glfwInitContextAPI())
return GL_FALSE;
_glfw.ns.eventSource = CGEventSourceCreate(kCGEventSourceStateHIDSystemState);
@@ -141,7 +141,7 @@ void _glfwPlatformTerminate(void)
_glfwTerminateJoysticks();
_glfwTerminateOpenGL();
_glfwTerminateContextAPI();
}