Replace GL booleans with public macros

This commit is contained in:
Camilla Berglund
2015-08-23 19:30:04 +02:00
parent 13fbb4748a
commit 0eccf75f65
71 changed files with 581 additions and 557 deletions
+3 -3
View File
@@ -39,11 +39,11 @@ int _glfwCreateContextTLS(void)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Win32: Failed to allocate TLS index");
return GL_FALSE;
return GLFW_FALSE;
}
_glfw.win32_tls.allocated = GL_TRUE;
return GL_TRUE;
_glfw.win32_tls.allocated = GLFW_TRUE;
return GLFW_TRUE;
}
void _glfwDestroyContextTLS(void)