2011-10-01 17:42:59 +00:00
|
|
|
//========================================================================
|
2013-07-29 18:53:17 +00:00
|
|
|
// GLFW 3.0 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;
|
2013-01-05 01:14:27 +00:00
|
|
|
DEVMODE dm;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-04-21 19:28:07 +00:00
|
|
|
best = _glfwChooseVideoMode(monitor, desired);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
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));
|
2013-01-02 16:29:24 +00:00
|
|
|
dm.dmSize = sizeof(DEVMODE);
|
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;
|
|
|
|
|
|
|
|
if (ChangeDisplaySettingsEx(monitor->win32.name,
|
|
|
|
&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
|
|
|
|
|
|
|
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
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
ChangeDisplaySettingsEx(monitor->win32.name,
|
|
|
|
NULL, NULL, CDS_FULLSCREEN, NULL);
|
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;
|
|
|
|
DWORD adapterIndex = 0;
|
2013-02-17 18:09:22 +00:00
|
|
|
int primaryIndex = 0;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2013-06-09 11:07:23 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
2013-02-12 12:43:47 +00:00
|
|
|
DISPLAY_DEVICE adapter, display;
|
2013-01-02 16:29:24 +00:00
|
|
|
char* name;
|
2012-09-12 20:51:55 +00:00
|
|
|
HDC dc;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
ZeroMemory(&adapter, sizeof(DISPLAY_DEVICE));
|
|
|
|
adapter.cb = sizeof(DISPLAY_DEVICE);
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
if (!EnumDisplayDevices(NULL, adapterIndex, &adapter, 0))
|
|
|
|
break;
|
2011-10-01 17:42:59 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
adapterIndex++;
|
2011-10-02 20:13:47 +00:00
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
if ((adapter.StateFlags & DISPLAY_DEVICE_MIRRORING_DRIVER) ||
|
|
|
|
!(adapter.StateFlags & DISPLAY_DEVICE_ACTIVE))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-09-12 20:51:55 +00:00
|
|
|
if (found == size)
|
|
|
|
{
|
|
|
|
if (size)
|
|
|
|
size *= 2;
|
|
|
|
else
|
|
|
|
size = 4;
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2012-09-12 20:51:55 +00:00
|
|
|
monitors = (_GLFWmonitor**) realloc(monitors, sizeof(_GLFWmonitor*) * size);
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-02-12 12:43:47 +00:00
|
|
|
ZeroMemory(&display, sizeof(DISPLAY_DEVICE));
|
|
|
|
display.cb = sizeof(DISPLAY_DEVICE);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-02-12 12:43:47 +00:00
|
|
|
EnumDisplayDevices(adapter.DeviceName, 0, &display, 0);
|
|
|
|
dc = CreateDC(L"DISPLAY", display.DeviceString, NULL, NULL);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-02-17 18:09:22 +00:00
|
|
|
if (adapter.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
|
|
|
|
primaryIndex = found;
|
2012-09-13 15:46:40 +00:00
|
|
|
|
2013-02-12 12:43:47 +00:00
|
|
|
name = _glfwCreateUTF8FromWideString(display.DeviceString);
|
2013-01-31 23:52:25 +00:00
|
|
|
if (!name)
|
|
|
|
{
|
2013-04-18 13:30:28 +00:00
|
|
|
_glfwDestroyMonitors(monitors, found);
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Failed to convert string to UTF-8");
|
2013-06-09 11:07:23 +00:00
|
|
|
|
|
|
|
free(monitors);
|
2013-01-31 23:52:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-02-17 18:09:22 +00:00
|
|
|
monitors[found] = _glfwCreateMonitor(name,
|
2012-09-12 20:51:55 +00:00
|
|
|
GetDeviceCaps(dc, HORZSIZE),
|
2013-02-20 15:00:53 +00:00
|
|
|
GetDeviceCaps(dc, VERTSIZE));
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
free(name);
|
2012-09-12 20:51:55 +00:00
|
|
|
DeleteDC(dc);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-02-20 14:44:37 +00:00
|
|
|
wcscpy(monitors[found]->win32.name, adapter.DeviceName);
|
2012-09-12 20:51:55 +00:00
|
|
|
found++;
|
2012-09-12 17:35:52 +00:00
|
|
|
}
|
2012-07-06 11:55:54 +00:00
|
|
|
|
2013-02-17 18:09:22 +00:00
|
|
|
if (primaryIndex > 0)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* temp = monitors[0];
|
|
|
|
monitors[0] = monitors[primaryIndex];
|
|
|
|
monitors[primaryIndex] = temp;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2013-06-12 17:57:55 +00:00
|
|
|
return wcscmp(first->win32.name, second->win32.name) == 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)
|
|
|
|
{
|
|
|
|
DEVMODE settings;
|
|
|
|
ZeroMemory(&settings, sizeof(DEVMODE));
|
|
|
|
settings.dmSize = sizeof(DEVMODE);
|
|
|
|
|
|
|
|
EnumDisplaySettingsEx(monitor->win32.name,
|
|
|
|
ENUM_CURRENT_SETTINGS,
|
|
|
|
&settings,
|
|
|
|
EDS_ROTATEDMODE);
|
|
|
|
|
|
|
|
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;
|
|
|
|
DEVMODE dm;
|
|
|
|
|
|
|
|
ZeroMemory(&dm, sizeof(DEVMODE));
|
|
|
|
dm.dmSize = sizeof(DEVMODE);
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!EnumDisplaySettings(monitor->win32.name, 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)
|
|
|
|
{
|
|
|
|
DEVMODE dm;
|
|
|
|
|
|
|
|
ZeroMemory(&dm, sizeof(DEVMODE));
|
|
|
|
dm.dmSize = sizeof(DEVMODE);
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
EnumDisplaySettings(monitor->win32.name, 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);
|
|
|
|
}
|
|
|
|
|