2010-10-13 02:04:43 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 - www.glfw.org
|
2010-10-13 02:04:43 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 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 <math.h>
|
2013-05-19 13:46:44 +00:00
|
|
|
#include <stdlib.h>
|
2010-10-13 02:04:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
|
2013-05-30 22:09:37 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
void _glfwAllocGammaArrays(GLFWgammaramp* ramp, unsigned int size)
|
2013-05-19 13:46:44 +00:00
|
|
|
{
|
2013-07-04 12:54:07 +00:00
|
|
|
ramp->red = calloc(size, sizeof(unsigned short));
|
|
|
|
ramp->green = calloc(size, sizeof(unsigned short));
|
|
|
|
ramp->blue = calloc(size, sizeof(unsigned short));
|
2013-05-19 13:46:44 +00:00
|
|
|
ramp->size = size;
|
|
|
|
}
|
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
void _glfwFreeGammaArrays(GLFWgammaramp* ramp)
|
2013-05-19 13:46:44 +00:00
|
|
|
{
|
|
|
|
free(ramp->red);
|
|
|
|
free(ramp->green);
|
|
|
|
free(ramp->blue);
|
|
|
|
|
|
|
|
memset(ramp, 0, sizeof(GLFWgammaramp));
|
|
|
|
}
|
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
GLFWAPI void glfwSetGamma(GLFWmonitor* handle, float gamma)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-05-19 13:46:44 +00:00
|
|
|
int i;
|
|
|
|
unsigned short values[256];
|
2010-10-13 02:04:43 +00:00
|
|
|
GLFWgammaramp ramp;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2011-09-06 13:47:17 +00:00
|
|
|
if (gamma <= 0.f)
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_VALUE,
|
|
|
|
"Gamma value must be greater than zero");
|
2011-09-06 13:47:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
for (i = 0; i < 256; i++)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-07-05 12:26:02 +00:00
|
|
|
double value;
|
2011-09-20 13:44:54 +00:00
|
|
|
|
2012-09-12 19:34:23 +00:00
|
|
|
// Calculate intensity
|
2013-07-05 12:26:02 +00:00
|
|
|
value = i / 255.0;
|
2012-09-12 19:34:23 +00:00
|
|
|
// Apply gamma curve
|
2013-07-05 12:26:02 +00:00
|
|
|
value = pow(value, 1.0 / gamma) * 65535.0 + 0.5;
|
2012-09-27 00:35:19 +00:00
|
|
|
|
2012-09-12 19:34:23 +00:00
|
|
|
// Clamp to value range
|
2013-07-05 12:26:02 +00:00
|
|
|
if (value > 65535.0)
|
|
|
|
value = 65535.0;
|
2011-09-20 13:44:54 +00:00
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
values[i] = (unsigned short) value;
|
2010-10-13 02:04:43 +00:00
|
|
|
}
|
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
ramp.red = values;
|
|
|
|
ramp.green = values;
|
|
|
|
ramp.blue = values;
|
|
|
|
ramp.size = 256;
|
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
glfwSetGammaRamp(handle, &ramp);
|
2010-10-13 02:04:43 +00:00
|
|
|
}
|
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
GLFWAPI const GLFWgammaramp* glfwGetGammaRamp(GLFWmonitor* handle)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-02-12 12:50:41 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2013-05-19 13:46:44 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
_glfwFreeGammaArrays(&monitor->currentRamp);
|
2013-05-19 13:46:44 +00:00
|
|
|
_glfwPlatformGetGammaRamp(monitor, &monitor->currentRamp);
|
|
|
|
|
|
|
|
return &monitor->currentRamp;
|
2010-10-13 02:04:43 +00:00
|
|
|
}
|
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
GLFWAPI void glfwSetGammaRamp(GLFWmonitor* handle, const GLFWgammaramp* ramp)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-02-12 12:50:41 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
if (!monitor->originalRamp.size)
|
2013-02-12 12:50:41 +00:00
|
|
|
_glfwPlatformGetGammaRamp(monitor, &monitor->originalRamp);
|
|
|
|
|
|
|
|
_glfwPlatformSetGammaRamp(monitor, ramp);
|
2010-10-13 02:04:43 +00:00
|
|
|
}
|
|
|
|
|