Simplified call to platform-specific extension check.

This commit is contained in:
Camilla Berglund 2012-08-02 15:32:39 +02:00
parent 1bad573c10
commit a916997c86

View File

@ -639,11 +639,8 @@ GLFWAPI int glfwExtensionSupported(const char* extension)
} }
} }
// Additional platform specific extension checking (e.g. WGL) // Check if extension is in the platform-specific string
if (_glfwPlatformExtensionSupported(extension)) return _glfwPlatformExtensionSupported(extension);
return GL_TRUE;
return GL_FALSE;
} }