2011-05-07 08:53:50 +00:00
|
|
|
//========================================================================
|
2016-08-18 21:42:15 +00:00
|
|
|
// GLFW 3.3 - www.glfw.org
|
2011-05-07 08:53:50 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
2016-11-21 15:23:59 +00:00
|
|
|
// Copyright (c) 2006-2016 Camilla Löwy <elmindreda@glfw.org>
|
2011-05-07 08:53:50 +00:00
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
|
2016-01-31 16:56:36 +00:00
|
|
|
#include <assert.h>
|
2014-08-18 10:31:48 +00:00
|
|
|
#include <math.h>
|
2015-03-15 14:40:43 +00:00
|
|
|
#include <float.h>
|
2012-07-05 14:15:01 +00:00
|
|
|
#include <string.h>
|
2012-09-12 17:35:52 +00:00
|
|
|
#include <stdlib.h>
|
2012-12-31 02:04:04 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2015-12-15 14:19:54 +00:00
|
|
|
// Lexically compare video modes, used by qsort
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-12-15 14:19:54 +00:00
|
|
|
static int compareVideoModes(const void* fp, const void* sp)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2015-12-15 14:19:54 +00:00
|
|
|
const GLFWvidmode* fm = fp;
|
2015-12-15 21:35:51 +00:00
|
|
|
const GLFWvidmode* sm = sp;
|
2015-12-15 14:19:54 +00:00
|
|
|
const int fbpp = fm->redBits + fm->greenBits + fm->blueBits;
|
|
|
|
const int sbpp = sm->redBits + sm->greenBits + sm->blueBits;
|
|
|
|
const int farea = fm->width * fm->height;
|
|
|
|
const int sarea = sm->width * sm->height;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
// First sort on color bits per pixel
|
2015-12-15 14:19:54 +00:00
|
|
|
if (fbpp != sbpp)
|
|
|
|
return fbpp - sbpp;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2015-12-15 14:19:54 +00:00
|
|
|
// Then sort on screen area
|
|
|
|
if (farea != sarea)
|
|
|
|
return farea - sarea;
|
2013-05-30 13:52:42 +00:00
|
|
|
|
|
|
|
// Lastly sort on refresh rate
|
2015-12-15 14:19:54 +00:00
|
|
|
return fm->refreshRate - sm->refreshRate;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
2012-07-05 14:15:01 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
// Retrieves the available modes for the specified monitor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-08-23 17:30:04 +00:00
|
|
|
static GLFWbool refreshVideoModes(_GLFWmonitor* monitor)
|
2013-01-02 16:29:24 +00:00
|
|
|
{
|
|
|
|
int modeCount;
|
2013-06-09 09:45:26 +00:00
|
|
|
GLFWvidmode* modes;
|
2013-01-02 16:29:24 +00:00
|
|
|
|
2013-06-07 13:11:26 +00:00
|
|
|
if (monitor->modes)
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2013-06-07 13:11:26 +00:00
|
|
|
|
2013-06-09 09:45:26 +00:00
|
|
|
modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!modes)
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2013-01-02 16:29:24 +00:00
|
|
|
|
|
|
|
qsort(modes, modeCount, sizeof(GLFWvidmode), compareVideoModes);
|
|
|
|
|
|
|
|
free(monitor->modes);
|
|
|
|
monitor->modes = modes;
|
|
|
|
monitor->modeCount = modeCount;
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2013-01-02 16:29:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-14 19:47:09 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-01-23 18:52:52 +00:00
|
|
|
////// GLFW event API //////
|
2012-08-14 19:47:09 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-01-10 14:46:00 +00:00
|
|
|
void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int placement)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
if (action == GLFW_CONNECTED)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
_glfw.monitorCount++;
|
|
|
|
_glfw.monitors =
|
|
|
|
realloc(_glfw.monitors, sizeof(_GLFWmonitor*) * _glfw.monitorCount);
|
2012-09-27 19:37:36 +00:00
|
|
|
|
2017-01-10 14:46:00 +00:00
|
|
|
if (placement == _GLFW_INSERT_FIRST)
|
2012-09-27 19:37:36 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
memmove(_glfw.monitors + 1,
|
|
|
|
_glfw.monitors,
|
|
|
|
(_glfw.monitorCount - 1) * sizeof(_GLFWmonitor*));
|
|
|
|
_glfw.monitors[0] = monitor;
|
2012-09-27 19:37:36 +00:00
|
|
|
}
|
2016-12-05 00:19:48 +00:00
|
|
|
else
|
|
|
|
_glfw.monitors[_glfw.monitorCount - 1] = monitor;
|
2012-09-12 17:35:52 +00:00
|
|
|
}
|
2016-12-05 00:19:48 +00:00
|
|
|
else if (action == GLFW_DISCONNECTED)
|
2013-05-24 13:05:01 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < _glfw.monitorCount; i++)
|
2013-05-24 13:05:01 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
if (_glfw.monitors[i] == monitor)
|
2013-05-24 13:05:01 +00:00
|
|
|
{
|
2016-12-05 00:19:48 +00:00
|
|
|
_glfw.monitorCount--;
|
|
|
|
memmove(_glfw.monitors + i,
|
|
|
|
_glfw.monitors + i + 1,
|
|
|
|
(_glfw.monitorCount - i) * sizeof(_GLFWmonitor*));
|
2013-05-24 13:05:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2016-12-05 00:19:48 +00:00
|
|
|
if (_glfw.callbacks.monitor)
|
|
|
|
_glfw.callbacks.monitor((GLFWmonitor*) monitor, action);
|
|
|
|
|
|
|
|
if (action == GLFW_DISCONNECTED)
|
|
|
|
_glfwFreeMonitor(monitor);
|
2012-08-14 19:47:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 14:46:00 +00:00
|
|
|
void _glfwInputMonitorWindow(_GLFWmonitor* monitor, _GLFWwindow* window)
|
2016-02-23 11:34:35 +00:00
|
|
|
{
|
|
|
|
monitor->window = window;
|
|
|
|
}
|
|
|
|
|
2013-01-23 18:52:52 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-01-21 14:23:11 +00:00
|
|
|
_GLFWmonitor* _glfwAllocMonitor(const char* name, int widthMM, int heightMM)
|
2013-01-23 18:52:52 +00:00
|
|
|
{
|
2013-07-04 12:54:07 +00:00
|
|
|
_GLFWmonitor* monitor = calloc(1, sizeof(_GLFWmonitor));
|
2013-01-23 18:52:52 +00:00
|
|
|
monitor->widthMM = widthMM;
|
|
|
|
monitor->heightMM = heightMM;
|
|
|
|
|
2016-10-16 12:35:23 +00:00
|
|
|
if (name)
|
|
|
|
monitor->name = strdup(name);
|
|
|
|
|
2013-01-23 18:52:52 +00:00
|
|
|
return monitor;
|
|
|
|
}
|
|
|
|
|
2014-01-21 14:23:11 +00:00
|
|
|
void _glfwFreeMonitor(_GLFWmonitor* monitor)
|
2013-01-23 18:52:52 +00:00
|
|
|
{
|
|
|
|
if (monitor == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
_glfwFreeGammaArrays(&monitor->originalRamp);
|
|
|
|
_glfwFreeGammaArrays(&monitor->currentRamp);
|
2013-05-19 13:46:44 +00:00
|
|
|
|
2013-01-23 18:52:52 +00:00
|
|
|
free(monitor->modes);
|
|
|
|
free(monitor->name);
|
|
|
|
free(monitor);
|
|
|
|
}
|
|
|
|
|
2014-08-18 10:31:48 +00:00
|
|
|
void _glfwAllocGammaArrays(GLFWgammaramp* ramp, unsigned int size)
|
|
|
|
{
|
|
|
|
ramp->red = calloc(size, sizeof(unsigned short));
|
|
|
|
ramp->green = calloc(size, sizeof(unsigned short));
|
|
|
|
ramp->blue = calloc(size, sizeof(unsigned short));
|
|
|
|
ramp->size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwFreeGammaArrays(GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
free(ramp->red);
|
|
|
|
free(ramp->green);
|
|
|
|
free(ramp->blue);
|
|
|
|
|
|
|
|
memset(ramp, 0, sizeof(GLFWgammaramp));
|
|
|
|
}
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
const GLFWvidmode* _glfwChooseVideoMode(_GLFWmonitor* monitor,
|
|
|
|
const GLFWvidmode* desired)
|
2012-12-31 02:04:04 +00:00
|
|
|
{
|
2013-01-06 20:02:57 +00:00
|
|
|
int i;
|
2012-12-31 02:04:04 +00:00
|
|
|
unsigned int sizeDiff, leastSizeDiff = UINT_MAX;
|
2013-05-30 13:52:42 +00:00
|
|
|
unsigned int rateDiff, leastRateDiff = UINT_MAX;
|
2012-12-31 02:04:04 +00:00
|
|
|
unsigned int colorDiff, leastColorDiff = UINT_MAX;
|
|
|
|
const GLFWvidmode* current;
|
|
|
|
const GLFWvidmode* closest = NULL;
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!refreshVideoModes(monitor))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < monitor->modeCount; i++)
|
2012-12-31 02:04:04 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
current = monitor->modes + i;
|
2012-12-31 02:04:04 +00:00
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
colorDiff = 0;
|
|
|
|
|
|
|
|
if (desired->redBits != GLFW_DONT_CARE)
|
|
|
|
colorDiff += abs(current->redBits - desired->redBits);
|
|
|
|
if (desired->greenBits != GLFW_DONT_CARE)
|
|
|
|
colorDiff += abs(current->greenBits - desired->greenBits);
|
|
|
|
if (desired->blueBits != GLFW_DONT_CARE)
|
|
|
|
colorDiff += abs(current->blueBits - desired->blueBits);
|
2012-12-31 02:04:04 +00:00
|
|
|
|
|
|
|
sizeDiff = abs((current->width - desired->width) *
|
|
|
|
(current->width - desired->width) +
|
|
|
|
(current->height - desired->height) *
|
|
|
|
(current->height - desired->height));
|
|
|
|
|
2014-04-08 16:57:43 +00:00
|
|
|
if (desired->refreshRate != GLFW_DONT_CARE)
|
2013-05-30 18:42:50 +00:00
|
|
|
rateDiff = abs(current->refreshRate - desired->refreshRate);
|
|
|
|
else
|
|
|
|
rateDiff = UINT_MAX - current->refreshRate;
|
2013-05-30 13:52:42 +00:00
|
|
|
|
2012-12-31 02:04:04 +00:00
|
|
|
if ((colorDiff < leastColorDiff) ||
|
2013-05-30 13:52:42 +00:00
|
|
|
(colorDiff == leastColorDiff && sizeDiff < leastSizeDiff) ||
|
|
|
|
(colorDiff == leastColorDiff && sizeDiff == leastSizeDiff && rateDiff < leastRateDiff))
|
2012-12-31 02:04:04 +00:00
|
|
|
{
|
|
|
|
closest = current;
|
|
|
|
leastSizeDiff = sizeDiff;
|
2013-05-30 13:52:42 +00:00
|
|
|
leastRateDiff = rateDiff;
|
2012-12-31 02:04:04 +00:00
|
|
|
leastColorDiff = colorDiff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return closest;
|
|
|
|
}
|
|
|
|
|
2015-12-15 14:19:54 +00:00
|
|
|
int _glfwCompareVideoModes(const GLFWvidmode* fm, const GLFWvidmode* sm)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2015-12-15 14:19:54 +00:00
|
|
|
return compareVideoModes(fm, sm);
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwSplitBPP(int bpp, int* red, int* green, int* blue)
|
|
|
|
{
|
|
|
|
int delta;
|
|
|
|
|
|
|
|
// We assume that by 32 the user really meant 24
|
|
|
|
if (bpp == 32)
|
|
|
|
bpp = 24;
|
|
|
|
|
|
|
|
// Convert "bits per pixel" to red, green & blue sizes
|
|
|
|
|
|
|
|
*red = *green = *blue = bpp / 3;
|
|
|
|
delta = bpp - (*red * 3);
|
|
|
|
if (delta >= 1)
|
|
|
|
*green = *green + 1;
|
|
|
|
|
|
|
|
if (delta == 2)
|
|
|
|
*red = *red + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-06 21:28:56 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI GLFWmonitor** glfwGetMonitors(int* count)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(count != NULL);
|
2017-02-23 16:46:59 +00:00
|
|
|
|
2013-05-13 23:06:31 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-05-13 23:06:31 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
*count = _glfw.monitorCount;
|
2013-01-05 20:13:28 +00:00
|
|
|
return (GLFWmonitor**) _glfw.monitors;
|
2012-09-12 17:35:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI GLFWmonitor* glfwGetPrimaryMonitor(void)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2015-03-29 11:46:21 +00:00
|
|
|
|
|
|
|
if (!_glfw.monitorCount)
|
|
|
|
return NULL;
|
|
|
|
|
2013-02-17 18:09:22 +00:00
|
|
|
return (GLFWmonitor*) _glfw.monitors[0];
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 18:10:17 +00:00
|
|
|
GLFWAPI void glfwGetMonitorPos(GLFWmonitor* handle, int* xpos, int* ypos)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
2014-04-07 13:28:32 +00:00
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = 0;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2014-04-07 13:28:32 +00:00
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
_glfwPlatformGetMonitorPos(monitor, xpos, ypos);
|
2013-01-24 18:10:17 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 22:33:14 +00:00
|
|
|
GLFWAPI void glfwGetMonitorPhysicalSize(GLFWmonitor* handle, int* widthMM, int* heightMM)
|
2013-01-24 18:10:17 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
2013-01-24 18:10:17 +00:00
|
|
|
|
2015-01-11 22:33:14 +00:00
|
|
|
if (widthMM)
|
|
|
|
*widthMM = 0;
|
|
|
|
if (heightMM)
|
|
|
|
*heightMM = 0;
|
2014-04-07 13:28:32 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2011-10-06 21:28:56 +00:00
|
|
|
|
2015-01-11 22:33:14 +00:00
|
|
|
if (widthMM)
|
|
|
|
*widthMM = monitor->widthMM;
|
|
|
|
if (heightMM)
|
|
|
|
*heightMM = monitor->heightMM;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI const char* glfwGetMonitorName(GLFWmonitor* handle)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-10-18 21:01:41 +00:00
|
|
|
return monitor->name;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWmonitorfun glfwSetMonitorCallback(GLFWmonitorfun cbfun)
|
2011-10-09 04:20:34 +00:00
|
|
|
{
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 15:06:06 +00:00
|
|
|
_GLFW_SWAP_POINTERS(_glfw.callbacks.monitor, cbfun);
|
2013-07-30 12:43:01 +00:00
|
|
|
return cbfun;
|
2011-10-09 04:20:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI const GLFWvidmode* glfwGetVideoModes(GLFWmonitor* handle, int* count)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
|
|
|
assert(count != NULL);
|
2016-05-23 12:29:06 +00:00
|
|
|
|
2013-05-13 23:06:31 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-06-07 13:11:26 +00:00
|
|
|
if (!refreshVideoModes(monitor))
|
|
|
|
return NULL;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 17:37:55 +00:00
|
|
|
*count = monitor->modeCount;
|
2012-09-12 19:04:24 +00:00
|
|
|
return monitor->modes;
|
|
|
|
}
|
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
GLFWAPI const GLFWvidmode* glfwGetVideoMode(GLFWmonitor* handle)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
_glfwPlatformGetVideoMode(monitor, &monitor->currentMode);
|
|
|
|
return &monitor->currentMode;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-18 10:31:48 +00:00
|
|
|
GLFWAPI void glfwSetGamma(GLFWmonitor* handle, float gamma)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned short values[256];
|
|
|
|
GLFWgammaramp ramp;
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(handle != NULL);
|
|
|
|
assert(gamma == gamma);
|
|
|
|
assert(gamma >= 0.f);
|
|
|
|
assert(gamma <= FLT_MAX);
|
2014-08-18 10:31:48 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT();
|
|
|
|
|
2015-03-15 14:40:43 +00:00
|
|
|
if (gamma != gamma || gamma <= 0.f || gamma > FLT_MAX)
|
2014-08-18 10:31:48 +00:00
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_VALUE, "Invalid gamma value %f", gamma);
|
2014-08-18 10:31:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
{
|
|
|
|
double value;
|
|
|
|
|
|
|
|
// Calculate intensity
|
|
|
|
value = i / 255.0;
|
|
|
|
// Apply gamma curve
|
|
|
|
value = pow(value, 1.0 / gamma) * 65535.0 + 0.5;
|
|
|
|
|
|
|
|
// Clamp to value range
|
|
|
|
if (value > 65535.0)
|
|
|
|
value = 65535.0;
|
|
|
|
|
|
|
|
values[i] = (unsigned short) value;
|
|
|
|
}
|
|
|
|
|
|
|
|
ramp.red = values;
|
|
|
|
ramp.green = values;
|
|
|
|
ramp.blue = values;
|
|
|
|
ramp.size = 256;
|
|
|
|
|
|
|
|
glfwSetGammaRamp(handle, &ramp);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI const GLFWgammaramp* glfwGetGammaRamp(GLFWmonitor* handle)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
2014-08-18 10:31:48 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
_glfwFreeGammaArrays(&monitor->currentRamp);
|
|
|
|
_glfwPlatformGetGammaRamp(monitor, &monitor->currentRamp);
|
|
|
|
|
|
|
|
return &monitor->currentRamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI void glfwSetGammaRamp(GLFWmonitor* handle, const GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(monitor != NULL);
|
|
|
|
assert(ramp != NULL);
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(ramp->size > 0);
|
2016-05-23 12:29:06 +00:00
|
|
|
assert(ramp->red != NULL);
|
|
|
|
assert(ramp->green != NULL);
|
|
|
|
assert(ramp->blue != NULL);
|
|
|
|
|
|
|
|
if (ramp->size <= 0)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_VALUE,
|
|
|
|
"Invalid gamma ramp size %i",
|
|
|
|
ramp->size);
|
|
|
|
return;
|
|
|
|
}
|
2014-08-18 10:31:48 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT();
|
|
|
|
|
|
|
|
if (!monitor->originalRamp.size)
|
|
|
|
_glfwPlatformGetGammaRamp(monitor, &monitor->originalRamp);
|
|
|
|
|
|
|
|
_glfwPlatformSetGammaRamp(monitor, ramp);
|
|
|
|
}
|
|
|
|
|