2011-10-01 17:42:59 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 Win32 - www.glfw.org
|
2011-10-01 17:42:59 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-09-12 19:04:24 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <malloc.h>
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 18:46:54 +00:00
|
|
|
// These constants are missing on MinGW
|
2011-10-06 21:28:56 +00:00
|
|
|
#ifndef EDS_ROTATEDMODE
|
2012-09-12 18:46:54 +00:00
|
|
|
#define EDS_ROTATEDMODE 0x00000004
|
2011-10-06 21:28:56 +00:00
|
|
|
#endif
|
2012-01-31 22:47:01 +00:00
|
|
|
#ifndef DISPLAY_DEVICE_ACTIVE
|
2012-09-12 18:46:54 +00:00
|
|
|
#define DISPLAY_DEVICE_ACTIVE 0x00000001
|
2012-01-31 22:47:01 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Change the current video mode
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-04-21 19:28:07 +00:00
|
|
|
GLboolean _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
GLFWvidmode current;
|
|
|
|
const GLFWvidmode* best;
|
2014-03-06 17:30:14 +00:00
|
|
|
DEVMODEW dm;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-04-21 19:28:07 +00:00
|
|
|
best = _glfwChooseVideoMode(monitor, desired);
|
2013-01-02 16:29:24 +00:00
|
|
|
_glfwPlatformGetVideoMode(monitor, ¤t);
|
|
|
|
if (_glfwCompareVideoModes(¤t, best) == 0)
|
|
|
|
return GL_TRUE;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-06-09 09:45:51 +00:00
|
|
|
ZeroMemory(&dm, sizeof(dm));
|
2014-03-06 17:30:14 +00:00
|
|
|
dm.dmSize = sizeof(DEVMODEW);
|
2013-05-30 13:52:42 +00:00
|
|
|
dm.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL |
|
|
|
|
DM_DISPLAYFREQUENCY;
|
|
|
|
dm.dmPelsWidth = best->width;
|
|
|
|
dm.dmPelsHeight = best->height;
|
|
|
|
dm.dmBitsPerPel = best->redBits + best->greenBits + best->blueBits;
|
|
|
|
dm.dmDisplayFrequency = best->refreshRate;
|
2013-01-02 16:29:24 +00:00
|
|
|
|
|
|
|
if (dm.dmBitsPerPel < 15 || dm.dmBitsPerPel >= 24)
|
|
|
|
dm.dmBitsPerPel = 32;
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (ChangeDisplaySettingsExW(monitor->win32.adapterName,
|
2014-03-06 17:30:14 +00:00
|
|
|
&dm,
|
|
|
|
NULL,
|
|
|
|
CDS_FULLSCREEN,
|
|
|
|
NULL) != DISP_CHANGE_SUCCESSFUL)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to set video mode");
|
|
|
|
return GL_FALSE;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
2013-01-02 16:29:24 +00:00
|
|
|
|
2014-02-13 13:23:16 +00:00
|
|
|
monitor->win32.modeChanged = GL_TRUE;
|
2013-01-02 16:29:24 +00:00
|
|
|
return GL_TRUE;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Restore the previously saved (original) video mode
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-01-02 16:29:24 +00:00
|
|
|
void _glfwRestoreVideoMode(_GLFWmonitor* monitor)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2014-02-13 13:23:16 +00:00
|
|
|
if (monitor->win32.modeChanged)
|
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
ChangeDisplaySettingsExW(monitor->win32.adapterName,
|
2014-03-06 17:30:14 +00:00
|
|
|
NULL, NULL, CDS_FULLSCREEN, NULL);
|
2014-02-13 13:23:16 +00:00
|
|
|
monitor->win32.modeChanged = GL_FALSE;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-01 17:42:59 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* count)
|
2011-10-01 17:42:59 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
int size = 0, found = 0;
|
|
|
|
_GLFWmonitor** monitors = NULL;
|
2014-09-12 15:00:05 +00:00
|
|
|
DWORD adapterIndex, displayIndex;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2013-06-09 11:07:23 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
for (adapterIndex = 0; ; adapterIndex++)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
DISPLAY_DEVICEW adapter;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
ZeroMemory(&adapter, sizeof(DISPLAY_DEVICEW));
|
|
|
|
adapter.cb = sizeof(DISPLAY_DEVICEW);
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
if (!EnumDisplayDevicesW(NULL, adapterIndex, &adapter, 0))
|
2012-09-12 17:35:52 +00:00
|
|
|
break;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (!(adapter.StateFlags & DISPLAY_DEVICE_ACTIVE))
|
2012-09-12 17:35:52 +00:00
|
|
|
continue;
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
for (displayIndex = 0; ; displayIndex++)
|
2012-09-12 20:51:55 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
DISPLAY_DEVICEW display;
|
|
|
|
char* name;
|
|
|
|
HDC dc;
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
ZeroMemory(&display, sizeof(DISPLAY_DEVICEW));
|
|
|
|
display.cb = sizeof(DISPLAY_DEVICEW);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (!EnumDisplayDevicesW(adapter.DeviceName, displayIndex, &display, 0))
|
|
|
|
break;
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (found == size)
|
|
|
|
{
|
|
|
|
size += 4;
|
|
|
|
monitors = realloc(monitors, sizeof(_GLFWmonitor*) * size);
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
name = _glfwCreateUTF8FromWideString(display.DeviceString);
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 18:51:14 +00:00
|
|
|
"Win32: Failed to convert string to UTF-8");
|
2014-09-12 15:00:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-09-13 15:46:40 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
dc = CreateDCW(L"DISPLAY", adapter.DeviceName, NULL, NULL);
|
2013-06-09 11:07:23 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
monitors[found] = _glfwAllocMonitor(name,
|
|
|
|
GetDeviceCaps(dc, HORZSIZE),
|
|
|
|
GetDeviceCaps(dc, VERTSIZE));
|
2013-01-31 23:52:25 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
DeleteDC(dc);
|
|
|
|
free(name);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
wcscpy(monitors[found]->win32.adapterName, adapter.DeviceName);
|
|
|
|
wcscpy(monitors[found]->win32.displayName, display.DeviceName);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-10-28 14:35:03 +00:00
|
|
|
WideCharToMultiByte(CP_UTF8, 0,
|
|
|
|
adapter.DeviceName, -1,
|
|
|
|
monitors[found]->win32.publicAdapterName,
|
|
|
|
sizeof(monitors[found]->win32.publicAdapterName),
|
|
|
|
NULL, NULL);
|
|
|
|
|
2014-09-12 15:03:44 +00:00
|
|
|
WideCharToMultiByte(CP_UTF8, 0,
|
|
|
|
display.DeviceName, -1,
|
2014-10-28 14:35:03 +00:00
|
|
|
monitors[found]->win32.publicDisplayName,
|
|
|
|
sizeof(monitors[found]->win32.publicDisplayName),
|
2014-09-12 15:03:44 +00:00
|
|
|
NULL, NULL);
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (adapter.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE &&
|
|
|
|
displayIndex == 0)
|
|
|
|
{
|
|
|
|
_GLFW_SWAP_POINTERS(monitors[0], monitors[found]);
|
|
|
|
}
|
2012-07-06 11:55:54 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
found++;
|
|
|
|
}
|
2013-02-17 18:09:22 +00:00
|
|
|
}
|
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
*count = found;
|
|
|
|
return monitors;
|
2011-10-01 17:42:59 +00:00
|
|
|
}
|
2013-02-20 15:00:53 +00:00
|
|
|
|
2013-04-22 12:43:13 +00:00
|
|
|
GLboolean _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second)
|
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
return wcscmp(first->win32.displayName, second->win32.displayName) == 0;
|
2013-04-22 12:43:13 +00:00
|
|
|
}
|
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
DEVMODEW settings;
|
|
|
|
ZeroMemory(&settings, sizeof(DEVMODEW));
|
|
|
|
settings.dmSize = sizeof(DEVMODEW);
|
2013-02-20 15:00:53 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
EnumDisplaySettingsExW(monitor->win32.adapterName,
|
2014-03-06 17:30:14 +00:00
|
|
|
ENUM_CURRENT_SETTINGS,
|
|
|
|
&settings,
|
|
|
|
EDS_ROTATEDMODE);
|
2013-02-20 15:00:53 +00:00
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = settings.dmPosition.x;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = settings.dmPosition.y;
|
|
|
|
}
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|
|
|
{
|
|
|
|
int modeIndex = 0, count = 0;
|
|
|
|
GLFWvidmode* result = NULL;
|
|
|
|
|
|
|
|
*found = 0;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
GLFWvidmode mode;
|
2014-03-06 17:30:14 +00:00
|
|
|
DEVMODEW dm;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
ZeroMemory(&dm, sizeof(DEVMODEW));
|
|
|
|
dm.dmSize = sizeof(DEVMODEW);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (!EnumDisplaySettingsW(monitor->win32.adapterName, modeIndex, &dm))
|
2012-09-12 19:04:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
modeIndex++;
|
|
|
|
|
|
|
|
if (dm.dmBitsPerPel < 15)
|
|
|
|
{
|
|
|
|
// Skip modes with less than 15 BPP
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-05-30 13:52:42 +00:00
|
|
|
mode.width = dm.dmPelsWidth;
|
2012-09-12 19:04:24 +00:00
|
|
|
mode.height = dm.dmPelsHeight;
|
2013-05-30 13:52:42 +00:00
|
|
|
mode.refreshRate = dm.dmDisplayFrequency;
|
2012-09-12 19:04:24 +00:00
|
|
|
_glfwSplitBPP(dm.dmBitsPerPel,
|
2012-09-12 21:03:15 +00:00
|
|
|
&mode.redBits,
|
|
|
|
&mode.greenBits,
|
|
|
|
&mode.blueBits);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
for (i = 0; i < *found; i++)
|
|
|
|
{
|
|
|
|
if (_glfwCompareVideoModes(result + i, &mode) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < *found)
|
|
|
|
{
|
|
|
|
// This is a duplicate, so skip it
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*found == count)
|
|
|
|
{
|
|
|
|
if (count)
|
|
|
|
count *= 2;
|
|
|
|
else
|
|
|
|
count = 128;
|
|
|
|
|
2013-03-11 20:30:01 +00:00
|
|
|
result = (GLFWvidmode*) realloc(result, count * sizeof(GLFWvidmode));
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
result[*found] = mode;
|
|
|
|
(*found)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
DEVMODEW dm;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
ZeroMemory(&dm, sizeof(DEVMODEW));
|
|
|
|
dm.dmSize = sizeof(DEVMODEW);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
EnumDisplaySettingsW(monitor->win32.adapterName, ENUM_CURRENT_SETTINGS, &dm);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
mode->width = dm.dmPelsWidth;
|
|
|
|
mode->height = dm.dmPelsHeight;
|
2013-05-30 13:52:42 +00:00
|
|
|
mode->refreshRate = dm.dmDisplayFrequency;
|
2012-09-12 19:04:24 +00:00
|
|
|
_glfwSplitBPP(dm.dmBitsPerPel,
|
|
|
|
&mode->redBits,
|
|
|
|
&mode->greenBits,
|
|
|
|
&mode->blueBits);
|
|
|
|
}
|
|
|
|
|
2014-08-18 10:31:48 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
HDC dc;
|
|
|
|
WORD values[768];
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
dc = CreateDCW(L"DISPLAY", monitor->win32.adapterName, NULL, NULL);
|
2014-08-18 10:31:48 +00:00
|
|
|
GetDeviceGammaRamp(dc, values);
|
|
|
|
DeleteDC(dc);
|
|
|
|
|
|
|
|
_glfwAllocGammaArrays(ramp, 256);
|
|
|
|
|
|
|
|
memcpy(ramp->red, values + 0, 256 * sizeof(unsigned short));
|
|
|
|
memcpy(ramp->green, values + 256, 256 * sizeof(unsigned short));
|
|
|
|
memcpy(ramp->blue, values + 512, 256 * sizeof(unsigned short));
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
HDC dc;
|
|
|
|
WORD values[768];
|
|
|
|
|
|
|
|
if (ramp->size != 256)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Gamma ramp size must be 256");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(values + 0, ramp->red, 256 * sizeof(unsigned short));
|
|
|
|
memcpy(values + 256, ramp->green, 256 * sizeof(unsigned short));
|
|
|
|
memcpy(values + 512, ramp->blue, 256 * sizeof(unsigned short));
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
dc = CreateDCW(L"DISPLAY", monitor->win32.adapterName, NULL, NULL);
|
2014-08-18 10:31:48 +00:00
|
|
|
SetDeviceGammaRamp(dc, values);
|
|
|
|
DeleteDC(dc);
|
|
|
|
}
|
|
|
|
|
2014-01-13 19:02:43 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-10-28 14:35:03 +00:00
|
|
|
GLFWAPI const char* glfwGetWin32Adapter(GLFWmonitor* handle)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return monitor->win32.publicAdapterName;
|
|
|
|
}
|
|
|
|
|
2014-09-12 15:03:44 +00:00
|
|
|
GLFWAPI const char* glfwGetWin32Monitor(GLFWmonitor* handle)
|
2014-01-13 19:02:43 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2014-10-28 14:35:03 +00:00
|
|
|
return monitor->win32.publicDisplayName;
|
2014-01-13 19:02:43 +00:00
|
|
|
}
|
|
|
|
|