2010-10-13 02:04:43 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 X11 - 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 <limits.h>
|
|
|
|
#include <string.h>
|
2012-05-24 09:36:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
// Detect gamma ramp support
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-05-24 09:36:43 +00:00
|
|
|
void _glfwInitGammaRamp(void)
|
|
|
|
{
|
2014-01-22 15:34:43 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2012-05-24 09:36:43 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
XRRScreenResources* sr = XRRGetScreenResources(_glfw.x11.display,
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.x11.root);
|
2012-05-24 09:36:43 +00:00
|
|
|
|
2014-01-22 00:34:44 +00:00
|
|
|
if (!sr->ncrtc || !XRRGetCrtcGammaSize(_glfw.x11.display, sr->crtcs[0]))
|
2012-05-24 09:36:43 +00:00
|
|
|
{
|
2014-03-07 00:02:54 +00:00
|
|
|
// This is either a headless system or an older Nvidia binary driver
|
|
|
|
// with broken gamma support
|
2014-01-22 15:36:51 +00:00
|
|
|
// Flag it as useless and fall back to Xf86VidMode, if available
|
2014-01-22 16:24:00 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: RandR gamma ramp support seems broken");
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.x11.randr.gammaBroken = GL_TRUE;
|
2012-05-24 09:36:43 +00:00
|
|
|
}
|
|
|
|
|
2014-01-22 00:34:44 +00:00
|
|
|
XRRFreeScreenResources(sr);
|
2012-05-24 09:36:43 +00:00
|
|
|
}
|
2012-05-30 23:34:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-14 12:13:39 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-05-19 13:46:44 +00:00
|
|
|
const size_t size = XRRGetCrtcGammaSize(_glfw.x11.display,
|
|
|
|
monitor->x11.crtc);
|
|
|
|
XRRCrtcGamma* gamma = XRRGetCrtcGamma(_glfw.x11.display,
|
|
|
|
monitor->x11.crtc);
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
_glfwAllocGammaArrays(ramp, size);
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
memcpy(ramp->red, gamma->red, size * sizeof(unsigned short));
|
|
|
|
memcpy(ramp->green, gamma->green, size * sizeof(unsigned short));
|
|
|
|
memcpy(ramp->blue, gamma->blue, size * sizeof(unsigned short));
|
2010-10-13 02:04:43 +00:00
|
|
|
|
|
|
|
XRRFreeGamma(gamma);
|
2010-11-06 19:25:33 +00:00
|
|
|
}
|
2013-01-02 00:40:42 +00:00
|
|
|
else if (_glfw.x11.vidmode.available)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-02-12 12:50:41 +00:00
|
|
|
int size;
|
|
|
|
XF86VidModeGetGammaRampSize(_glfw.x11.display, _glfw.x11.screen, &size);
|
|
|
|
|
2013-07-04 12:51:52 +00:00
|
|
|
_glfwAllocGammaArrays(ramp, size);
|
2013-02-12 12:50:41 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XF86VidModeGetGammaRamp(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen,
|
2013-05-19 13:46:44 +00:00
|
|
|
ramp->size, ramp->red, ramp->green, ramp->blue);
|
2010-10-13 02:04:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-05-19 13:46:44 +00:00
|
|
|
XRRCrtcGamma* gamma = XRRAllocGamma(ramp->size);
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
memcpy(gamma->red, ramp->red, ramp->size * sizeof(unsigned short));
|
|
|
|
memcpy(gamma->green, ramp->green, ramp->size * sizeof(unsigned short));
|
|
|
|
memcpy(gamma->blue, ramp->blue, ramp->size * sizeof(unsigned short));
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
XRRSetCrtcGamma(_glfw.x11.display, monitor->x11.crtc, gamma);
|
2013-05-19 13:46:44 +00:00
|
|
|
XRRFreeGamma(gamma);
|
2010-11-06 19:25:33 +00:00
|
|
|
}
|
2013-01-02 00:40:42 +00:00
|
|
|
else if (_glfw.x11.vidmode.available)
|
2010-10-13 02:04:43 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
XF86VidModeSetGammaRamp(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen,
|
2013-05-19 13:46:44 +00:00
|
|
|
ramp->size,
|
2010-10-13 02:04:43 +00:00
|
|
|
(unsigned short*) ramp->red,
|
|
|
|
(unsigned short*) ramp->green,
|
|
|
|
(unsigned short*) ramp->blue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|