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
@@ -46,7 +46,7 @@ static pthread_key_t _glfwCurrentTLS;
// Initialize OpenGL support
//========================================================================
int _glfwInitOpenGL(void)
int _glfwInitContextAPI(void)
{
if (pthread_key_create(&_glfwCurrentTLS, NULL) != 0)
{
@@ -63,7 +63,7 @@ int _glfwInitOpenGL(void)
// Terminate OpenGL support
//========================================================================
void _glfwTerminateOpenGL(void)
void _glfwTerminateContextAPI(void)
{
pthread_key_delete(_glfwCurrentTLS);
}