mirror of
https://github.com/glfw/glfw.git
synced 2026-09-18 14:45:46 +00:00
Replace GL booleans with public macros
This commit is contained in:
+3
-3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user