Move DWM enabled test to file where it is used

This commit is contained in:
Camilla Berglund
2015-12-06 16:19:39 +01:00
parent 72632a846b
commit 75f1dfaf8a
3 changed files with 16 additions and 18 deletions
-15
View File
@@ -290,21 +290,6 @@ static HWND createHelperWindow(void)
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
// Returns whether desktop compositing is enabled
//
BOOL _glfwIsCompositionEnabled(void)
{
BOOL enabled;
if (!_glfw_DwmIsCompositionEnabled)
return FALSE;
if (_glfw_DwmIsCompositionEnabled(&enabled) != S_OK)
return FALSE;
return enabled;
}
// Returns a wide string version of the specified UTF-8 string
//
WCHAR* _glfwCreateWideStringFromUTF8(const char* source)