mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 04:53:50 +00:00
Simplified call to platform-specific extension check.
This commit is contained in:
parent
1bad573c10
commit
a916997c86
@ -639,11 +639,8 @@ GLFWAPI int glfwExtensionSupported(const char* extension)
|
||||
}
|
||||
}
|
||||
|
||||
// Additional platform specific extension checking (e.g. WGL)
|
||||
if (_glfwPlatformExtensionSupported(extension))
|
||||
return GL_TRUE;
|
||||
|
||||
return GL_FALSE;
|
||||
// Check if extension is in the platform-specific string
|
||||
return _glfwPlatformExtensionSupported(extension);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user