2011-05-07 08:53:50 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 X11 - www.glfw.org
|
2011-05-07 08:53:50 +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"
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
#include <limits.h>
|
2011-05-07 08:53:50 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
// Check whether the display mode should be included in enumeration
|
|
|
|
//
|
|
|
|
static GLboolean modeIsGood(const XRRModeInfo* mi)
|
|
|
|
{
|
|
|
|
return (mi->modeFlags & RR_Interlace) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculates the refresh rate, in Hz, from the specified RandR mode info
|
|
|
|
//
|
2013-05-30 13:52:42 +00:00
|
|
|
static int calculateRefreshRate(const XRRModeInfo* mi)
|
|
|
|
{
|
2014-02-13 13:25:26 +00:00
|
|
|
if (mi->hTotal && mi->vTotal)
|
|
|
|
return (int) ((double) mi->dotClock / ((double) mi->hTotal * (double) mi->vTotal));
|
|
|
|
else
|
2013-05-30 13:52:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
// Returns the mode info for a RandR mode XID
|
|
|
|
//
|
2013-05-30 13:52:42 +00:00
|
|
|
static const XRRModeInfo* getModeInfo(const XRRScreenResources* sr, RRMode id)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < sr->nmode; i++)
|
|
|
|
{
|
|
|
|
if (sr->modes[i].id == id)
|
|
|
|
return sr->modes + i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
// Convert RandR mode info to GLFW video mode
|
|
|
|
//
|
2014-08-10 14:35:09 +00:00
|
|
|
static GLFWvidmode vidmodeFromModeInfo(const XRRModeInfo* mi,
|
|
|
|
const XRRCrtcInfo* ci)
|
2014-02-13 13:25:26 +00:00
|
|
|
{
|
|
|
|
GLFWvidmode mode;
|
2014-08-10 14:35:09 +00:00
|
|
|
|
|
|
|
if (ci->rotation == RR_Rotate_90 || ci->rotation == RR_Rotate_270)
|
|
|
|
{
|
|
|
|
mode.width = mi->height;
|
|
|
|
mode.height = mi->width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mode.width = mi->width;
|
|
|
|
mode.height = mi->height;
|
|
|
|
}
|
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
mode.refreshRate = calculateRefreshRate(mi);
|
|
|
|
|
|
|
|
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
|
|
|
&mode.redBits, &mode.greenBits, &mode.blueBits);
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2013-05-30 13:52:42 +00:00
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
// Set the current video mode for the specified monitor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2014-03-10 11:34:15 +00:00
|
|
|
GLboolean _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2014-01-22 15:39:34 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRScreenResources* sr;
|
|
|
|
XRRCrtcInfo* ci;
|
2013-05-30 18:42:50 +00:00
|
|
|
XRROutputInfo* oi;
|
2014-02-13 13:25:26 +00:00
|
|
|
GLFWvidmode current;
|
|
|
|
const GLFWvidmode* best;
|
|
|
|
RRMode native = None;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
best = _glfwChooseVideoMode(monitor, desired);
|
|
|
|
_glfwPlatformGetVideoMode(monitor, ¤t);
|
|
|
|
if (_glfwCompareVideoModes(¤t, best) == 0)
|
2014-03-10 11:34:15 +00:00
|
|
|
return GL_TRUE;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
2013-05-30 18:42:50 +00:00
|
|
|
oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
for (i = 0; i < oi->nmode; i++)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2014-02-13 13:25:26 +00:00
|
|
|
const XRRModeInfo* mi = getModeInfo(sr, oi->modes[i]);
|
|
|
|
if (!modeIsGood(mi))
|
2013-05-30 18:42:50 +00:00
|
|
|
continue;
|
|
|
|
|
2014-08-10 14:35:09 +00:00
|
|
|
const GLFWvidmode mode = vidmodeFromModeInfo(mi, ci);
|
2014-02-13 13:25:26 +00:00
|
|
|
if (_glfwCompareVideoModes(best, &mode) == 0)
|
2013-02-01 07:25:05 +00:00
|
|
|
{
|
2014-02-13 13:25:26 +00:00
|
|
|
native = mi->id;
|
|
|
|
break;
|
2013-02-01 07:25:05 +00:00
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
if (native)
|
|
|
|
{
|
|
|
|
if (monitor->x11.oldMode == None)
|
|
|
|
monitor->x11.oldMode = ci->mode;
|
|
|
|
|
|
|
|
XRRSetCrtcConfig(_glfw.x11.display,
|
|
|
|
sr, monitor->x11.crtc,
|
|
|
|
CurrentTime,
|
|
|
|
ci->x, ci->y,
|
|
|
|
native,
|
|
|
|
ci->rotation,
|
|
|
|
ci->outputs,
|
|
|
|
ci->noutput);
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-05-30 18:42:50 +00:00
|
|
|
XRRFreeOutputInfo(oi);
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
XRRFreeScreenResources(sr);
|
2014-03-10 11:34:15 +00:00
|
|
|
|
|
|
|
if (!native)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Monitor mode list changed");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
2013-02-01 07:25:05 +00:00
|
|
|
}
|
2014-03-10 11:34:15 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
// Restore the saved (original) video mode for the specified monitor
|
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-01-22 15:39:34 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRScreenResources* sr;
|
|
|
|
XRRCrtcInfo* ci;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-08-06 17:51:29 +00:00
|
|
|
if (monitor->x11.oldMode == None)
|
|
|
|
return;
|
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRSetCrtcConfig(_glfw.x11.display,
|
|
|
|
sr, monitor->x11.crtc,
|
|
|
|
CurrentTime,
|
|
|
|
ci->x, ci->y,
|
|
|
|
monitor->x11.oldMode,
|
|
|
|
ci->rotation,
|
|
|
|
ci->outputs,
|
|
|
|
ci->noutput);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
XRRFreeScreenResources(sr);
|
2013-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
monitor->x11.oldMode = None;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-16 17:11:31 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-09 11:07:23 +00:00
|
|
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* count)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
int i, j, size = 0, found = 0;
|
2012-09-12 17:35:52 +00:00
|
|
|
_GLFWmonitor** monitors = NULL;
|
2011-10-03 16:48:59 +00:00
|
|
|
|
2013-06-09 11:07:23 +00:00
|
|
|
*count = 0;
|
2013-01-12 17:10:18 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
XRRScreenResources* sr = XRRGetScreenResources(_glfw.x11.display,
|
|
|
|
_glfw.x11.root);
|
|
|
|
RROutput primary = XRRGetOutputPrimary(_glfw.x11.display,
|
|
|
|
_glfw.x11.root);
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
for (i = 0; i < sr->ncrtc; i++)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
XRRCrtcInfo* ci = XRRGetCrtcInfo(_glfw.x11.display,
|
|
|
|
sr, sr->crtcs[i]);
|
2013-02-01 07:25:05 +00:00
|
|
|
|
|
|
|
for (j = 0; j < ci->noutput; j++)
|
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
XRROutputInfo* oi = XRRGetOutputInfo(_glfw.x11.display,
|
|
|
|
sr, ci->outputs[j]);
|
|
|
|
if (oi->connection != RR_Connected)
|
2013-02-01 07:25:05 +00:00
|
|
|
{
|
2014-09-12 15:00:05 +00:00
|
|
|
XRRFreeOutputInfo(oi);
|
|
|
|
continue;
|
2013-02-01 07:25:05 +00:00
|
|
|
}
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (found == size)
|
|
|
|
{
|
|
|
|
size += 4;
|
|
|
|
monitors = realloc(monitors, sizeof(_GLFWmonitor*) * size);
|
|
|
|
}
|
|
|
|
|
|
|
|
monitors[found] = _glfwAllocMonitor(oi->name,
|
|
|
|
oi->mm_width,
|
|
|
|
oi->mm_height);
|
|
|
|
|
|
|
|
monitors[found]->x11.output = ci->outputs[j];
|
|
|
|
monitors[found]->x11.crtc = oi->crtc;
|
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
XRRFreeOutputInfo(oi);
|
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
if (ci->outputs[j] == primary)
|
|
|
|
_GLFW_SWAP_POINTERS(monitors[0], monitors[found]);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2014-09-12 15:00:05 +00:00
|
|
|
found++;
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRFreeCrtcInfo(ci);
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
2013-02-01 07:25:05 +00:00
|
|
|
|
|
|
|
XRRFreeScreenResources(sr);
|
2013-02-17 18:09:22 +00:00
|
|
|
|
2013-06-09 11:07:23 +00:00
|
|
|
if (found == 0)
|
|
|
|
{
|
2014-01-22 15:39:34 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: RandR monitor support seems broken");
|
|
|
|
_glfw.x11.randr.monitorBroken = GL_TRUE;
|
2013-06-09 11:07:23 +00:00
|
|
|
}
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
2014-01-22 15:39:34 +00:00
|
|
|
|
|
|
|
if (!monitors)
|
2013-01-12 17:10:18 +00:00
|
|
|
{
|
2013-07-04 12:54:07 +00:00
|
|
|
monitors = calloc(1, sizeof(_GLFWmonitor*));
|
2014-01-21 14:23:11 +00:00
|
|
|
monitors[0] = _glfwAllocMonitor("Display",
|
|
|
|
DisplayWidthMM(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen),
|
|
|
|
DisplayHeightMM(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen));
|
2014-01-22 15:39:34 +00:00
|
|
|
found = 1;
|
2013-01-12 17:10:18 +00:00
|
|
|
}
|
2012-01-30 11:33:32 +00:00
|
|
|
|
2014-01-22 15:39:34 +00:00
|
|
|
*count = found;
|
2012-09-12 17:35:52 +00:00
|
|
|
return monitors;
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:43:13 +00:00
|
|
|
GLboolean _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second)
|
|
|
|
{
|
|
|
|
return first->x11.crtc == second->x11.crtc;
|
|
|
|
}
|
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
|
|
|
{
|
2014-01-22 15:39:34 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
2013-02-20 15:00:53 +00:00
|
|
|
{
|
|
|
|
XRRScreenResources* sr;
|
|
|
|
XRRCrtcInfo* ci;
|
|
|
|
|
2014-09-09 21:15:52 +00:00
|
|
|
sr = XRRGetScreenResourcesCurrent(_glfw.x11.display, _glfw.x11.root);
|
2013-02-20 15:00:53 +00:00
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = ci->x;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = ci->y;
|
|
|
|
|
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
XRRFreeScreenResources(sr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|
|
|
{
|
|
|
|
GLFWvidmode* result;
|
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
*found = 0;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
// Build array of available resolutions
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-01-22 15:39:34 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
2012-12-27 20:13:04 +00:00
|
|
|
{
|
2013-02-01 07:25:05 +00:00
|
|
|
int i, j;
|
2012-12-27 20:13:04 +00:00
|
|
|
XRRScreenResources* sr;
|
2014-08-10 14:35:09 +00:00
|
|
|
XRRCrtcInfo* ci;
|
2013-02-01 07:25:05 +00:00
|
|
|
XRROutputInfo* oi;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-09-09 21:15:52 +00:00
|
|
|
sr = XRRGetScreenResourcesCurrent(_glfw.x11.display, _glfw.x11.root);
|
2014-08-10 14:35:09 +00:00
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
2013-02-01 07:25:05 +00:00
|
|
|
oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-07-04 12:54:07 +00:00
|
|
|
result = calloc(oi->nmode, sizeof(GLFWvidmode));
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
for (i = 0; i < oi->nmode; i++)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
2013-05-30 13:52:42 +00:00
|
|
|
const XRRModeInfo* mi = getModeInfo(sr, oi->modes[i]);
|
2014-02-13 13:25:26 +00:00
|
|
|
if (!modeIsGood(mi))
|
|
|
|
continue;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2014-08-10 14:35:09 +00:00
|
|
|
const GLFWvidmode mode = vidmodeFromModeInfo(mi, ci);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
for (j = 0; j < *found; j++)
|
|
|
|
{
|
|
|
|
if (result[j].width == mode.width &&
|
2013-05-30 13:52:42 +00:00
|
|
|
result[j].height == mode.height &&
|
|
|
|
result[j].refreshRate == mode.refreshRate)
|
2012-12-27 20:13:04 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
if (j < *found)
|
|
|
|
{
|
|
|
|
// This is a duplicate, so skip it
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 20:13:04 +00:00
|
|
|
result[*found] = mode;
|
2012-09-12 19:04:24 +00:00
|
|
|
(*found)++;
|
|
|
|
}
|
2012-12-27 20:13:04 +00:00
|
|
|
|
2013-02-01 07:25:05 +00:00
|
|
|
XRRFreeOutputInfo(oi);
|
2014-08-10 14:35:09 +00:00
|
|
|
XRRFreeCrtcInfo(ci);
|
2012-12-27 20:13:04 +00:00
|
|
|
XRRFreeScreenResources(sr);
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
2013-01-12 17:10:18 +00:00
|
|
|
else
|
2012-12-27 20:13:04 +00:00
|
|
|
{
|
|
|
|
*found = 1;
|
2013-07-04 12:54:07 +00:00
|
|
|
result = calloc(1, sizeof(GLFWvidmode));
|
2014-02-13 13:25:26 +00:00
|
|
|
_glfwPlatformGetVideoMode(monitor, result);
|
2012-12-27 20:13:04 +00:00
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|
|
|
{
|
2014-01-22 15:39:34 +00:00
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
2012-10-21 22:05:55 +00:00
|
|
|
{
|
|
|
|
XRRScreenResources* sr;
|
|
|
|
XRRCrtcInfo* ci;
|
|
|
|
|
2014-09-09 21:15:52 +00:00
|
|
|
sr = XRRGetScreenResourcesCurrent(_glfw.x11.display, _glfw.x11.root);
|
2013-02-01 07:25:05 +00:00
|
|
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
2012-10-21 22:05:55 +00:00
|
|
|
|
2014-08-10 14:35:09 +00:00
|
|
|
*mode = vidmodeFromModeInfo(getModeInfo(sr, ci->mode), ci);
|
2013-05-30 13:52:42 +00:00
|
|
|
|
2012-10-21 22:05:55 +00:00
|
|
|
XRRFreeCrtcInfo(ci);
|
|
|
|
XRRFreeScreenResources(sr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
mode->width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
mode->height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
2013-05-30 13:52:42 +00:00
|
|
|
mode->refreshRate = 0;
|
2012-10-21 22:05:55 +00:00
|
|
|
|
2014-02-13 13:25:26 +00:00
|
|
|
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
|
|
|
&mode->redBits, &mode->greenBits, &mode->blueBits);
|
|
|
|
}
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-18 10:31:48 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
|
|
|
{
|
|
|
|
const size_t size = XRRGetCrtcGammaSize(_glfw.x11.display,
|
|
|
|
monitor->x11.crtc);
|
|
|
|
XRRCrtcGamma* gamma = XRRGetCrtcGamma(_glfw.x11.display,
|
|
|
|
monitor->x11.crtc);
|
|
|
|
|
|
|
|
_glfwAllocGammaArrays(ramp, size);
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
|
|
|
XRRFreeGamma(gamma);
|
|
|
|
}
|
|
|
|
else if (_glfw.x11.vidmode.available)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
XF86VidModeGetGammaRampSize(_glfw.x11.display, _glfw.x11.screen, &size);
|
|
|
|
|
|
|
|
_glfwAllocGammaArrays(ramp, size);
|
|
|
|
|
|
|
|
XF86VidModeGetGammaRamp(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen,
|
|
|
|
ramp->size, ramp->red, ramp->green, ramp->blue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
|
|
|
{
|
|
|
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
|
|
|
{
|
|
|
|
XRRCrtcGamma* gamma = XRRAllocGamma(ramp->size);
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
|
|
|
XRRSetCrtcGamma(_glfw.x11.display, monitor->x11.crtc, gamma);
|
|
|
|
XRRFreeGamma(gamma);
|
|
|
|
}
|
|
|
|
else if (_glfw.x11.vidmode.available)
|
|
|
|
{
|
|
|
|
XF86VidModeSetGammaRamp(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen,
|
|
|
|
ramp->size,
|
|
|
|
(unsigned short*) ramp->red,
|
|
|
|
(unsigned short*) ramp->green,
|
|
|
|
(unsigned short*) ramp->blue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-13 19:02:43 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-09-17 10:45:51 +00:00
|
|
|
GLFWAPI RROutput glfwGetX11Monitor(GLFWmonitor* handle)
|
2014-01-13 19:02:43 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(None);
|
2014-09-17 10:45:51 +00:00
|
|
|
return monitor->x11.output;
|
2014-01-13 19:02:43 +00:00
|
|
|
}
|
|
|
|
|