mirror of
https://github.com/glfw/glfw.git
synced 2024-11-26 06:14:35 +00:00
Cleaned up RandR video mode handling.
This commit is contained in:
parent
96433cdf19
commit
bf389f7183
@ -32,14 +32,25 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
static int calculateRefreshRate(const XRRModeInfo* mi)
|
// Check whether the display mode should be included in enumeration
|
||||||
|
//
|
||||||
|
static GLboolean modeIsGood(const XRRModeInfo* mi)
|
||||||
{
|
{
|
||||||
if (!mi->hTotal || !mi->vTotal)
|
return (mi->modeFlags & RR_Interlace) == 0;
|
||||||
return 0;
|
|
||||||
|
|
||||||
return (int) ((double) mi->dotClock / ((double) mi->hTotal * (double) mi->vTotal));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Calculates the refresh rate, in Hz, from the specified RandR mode info
|
||||||
|
//
|
||||||
|
static int calculateRefreshRate(const XRRModeInfo* mi)
|
||||||
|
{
|
||||||
|
if (mi->hTotal && mi->vTotal)
|
||||||
|
return (int) ((double) mi->dotClock / ((double) mi->hTotal * (double) mi->vTotal));
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns the mode info for a RandR mode XID
|
||||||
|
//
|
||||||
static const XRRModeInfo* getModeInfo(const XRRScreenResources* sr, RRMode id)
|
static const XRRModeInfo* getModeInfo(const XRRScreenResources* sr, RRMode id)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
@ -53,6 +64,21 @@ static const XRRModeInfo* getModeInfo(const XRRScreenResources* sr, RRMode id)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert RandR mode info to GLFW video mode
|
||||||
|
//
|
||||||
|
static GLFWvidmode vidmodeFromModeInfo(const XRRModeInfo* mi)
|
||||||
|
{
|
||||||
|
GLFWvidmode mode;
|
||||||
|
mode.width = mi->width;
|
||||||
|
mode.height = mi->height;
|
||||||
|
mode.refreshRate = calculateRefreshRate(mi);
|
||||||
|
|
||||||
|
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
||||||
|
&mode.redBits, &mode.greenBits, &mode.blueBits);
|
||||||
|
|
||||||
|
return mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
////// GLFW internal API //////
|
////// GLFW internal API //////
|
||||||
@ -64,56 +90,40 @@ void _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired)
|
|||||||
{
|
{
|
||||||
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.monitorBroken)
|
||||||
{
|
{
|
||||||
int i, j;
|
|
||||||
XRRScreenResources* sr;
|
XRRScreenResources* sr;
|
||||||
XRRCrtcInfo* ci;
|
XRRCrtcInfo* ci;
|
||||||
XRROutputInfo* oi;
|
XRROutputInfo* oi;
|
||||||
RRMode bestMode = 0;
|
GLFWvidmode current;
|
||||||
unsigned int sizeDiff, leastSizeDiff = UINT_MAX;
|
const GLFWvidmode* best;
|
||||||
unsigned int rateDiff, leastRateDiff = UINT_MAX;
|
RRMode native = None;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
best = _glfwChooseVideoMode(monitor, desired);
|
||||||
|
|
||||||
|
_glfwPlatformGetVideoMode(monitor, ¤t);
|
||||||
|
if (_glfwCompareVideoModes(¤t, best) == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
||||||
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
||||||
oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output);
|
oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output);
|
||||||
|
|
||||||
for (i = 0; i < sr->nmode; i++)
|
for (i = 0; i < oi->nmode; i++)
|
||||||
{
|
{
|
||||||
const XRRModeInfo* mi = sr->modes + i;
|
const XRRModeInfo* mi = getModeInfo(sr, oi->modes[i]);
|
||||||
|
if (!modeIsGood(mi))
|
||||||
if (mi->modeFlags & RR_Interlace)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (j = 0; j < oi->nmode; j++)
|
const GLFWvidmode mode = vidmodeFromModeInfo(mi);
|
||||||
|
if (_glfwCompareVideoModes(best, &mode) == 0)
|
||||||
{
|
{
|
||||||
if (oi->modes[j] == mi->id)
|
native = mi->id;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (j == oi->nmode)
|
if (native)
|
||||||
continue;
|
|
||||||
|
|
||||||
sizeDiff = (mi->width - desired->width) *
|
|
||||||
(mi->width - desired->width) +
|
|
||||||
(mi->height - desired->height) *
|
|
||||||
(mi->height - desired->height);
|
|
||||||
|
|
||||||
if (desired->refreshRate)
|
|
||||||
rateDiff = abs(calculateRefreshRate(mi) - desired->refreshRate);
|
|
||||||
else
|
|
||||||
rateDiff = UINT_MAX - calculateRefreshRate(mi);
|
|
||||||
|
|
||||||
if ((sizeDiff < leastSizeDiff) ||
|
|
||||||
(sizeDiff == leastSizeDiff && rateDiff < leastRateDiff))
|
|
||||||
{
|
{
|
||||||
bestMode = mi->id;
|
|
||||||
leastSizeDiff = sizeDiff;
|
|
||||||
leastRateDiff = rateDiff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bestMode == ci->mode)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (monitor->x11.oldMode == None)
|
if (monitor->x11.oldMode == None)
|
||||||
monitor->x11.oldMode = ci->mode;
|
monitor->x11.oldMode = ci->mode;
|
||||||
|
|
||||||
@ -121,10 +131,16 @@ void _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired)
|
|||||||
sr, monitor->x11.crtc,
|
sr, monitor->x11.crtc,
|
||||||
CurrentTime,
|
CurrentTime,
|
||||||
ci->x, ci->y,
|
ci->x, ci->y,
|
||||||
bestMode,
|
native,
|
||||||
ci->rotation,
|
ci->rotation,
|
||||||
ci->outputs,
|
ci->outputs,
|
||||||
ci->noutput);
|
ci->noutput);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
||||||
|
"X11: Monitor mode list changed");
|
||||||
|
}
|
||||||
|
|
||||||
XRRFreeOutputInfo(oi);
|
XRRFreeOutputInfo(oi);
|
||||||
XRRFreeCrtcInfo(ci);
|
XRRFreeCrtcInfo(ci);
|
||||||
@ -304,10 +320,6 @@ void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos)
|
|||||||
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
||||||
{
|
{
|
||||||
GLFWvidmode* result;
|
GLFWvidmode* result;
|
||||||
int depth, r, g, b;
|
|
||||||
|
|
||||||
depth = DefaultDepth(_glfw.x11.display, _glfw.x11.screen);
|
|
||||||
_glfwSplitBPP(depth, &r, &g, &b);
|
|
||||||
|
|
||||||
*found = 0;
|
*found = 0;
|
||||||
|
|
||||||
@ -326,12 +338,11 @@ GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|||||||
|
|
||||||
for (i = 0; i < oi->nmode; i++)
|
for (i = 0; i < oi->nmode; i++)
|
||||||
{
|
{
|
||||||
GLFWvidmode mode;
|
|
||||||
const XRRModeInfo* mi = getModeInfo(sr, oi->modes[i]);
|
const XRRModeInfo* mi = getModeInfo(sr, oi->modes[i]);
|
||||||
|
if (!modeIsGood(mi))
|
||||||
|
continue;
|
||||||
|
|
||||||
mode.width = mi->width;
|
const GLFWvidmode mode = vidmodeFromModeInfo(mi);
|
||||||
mode.height = mi->height;
|
|
||||||
mode.refreshRate = calculateRefreshRate(mi);
|
|
||||||
|
|
||||||
for (j = 0; j < *found; j++)
|
for (j = 0; j < *found; j++)
|
||||||
{
|
{
|
||||||
@ -349,10 +360,6 @@ GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
mode.redBits = r;
|
|
||||||
mode.greenBits = g;
|
|
||||||
mode.blueBits = b;
|
|
||||||
|
|
||||||
result[*found] = mode;
|
result[*found] = mode;
|
||||||
(*found)++;
|
(*found)++;
|
||||||
}
|
}
|
||||||
@ -363,15 +370,8 @@ GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* found)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
*found = 1;
|
*found = 1;
|
||||||
|
|
||||||
result = calloc(1, sizeof(GLFWvidmode));
|
result = calloc(1, sizeof(GLFWvidmode));
|
||||||
|
_glfwPlatformGetVideoMode(monitor, result);
|
||||||
result[0].width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
|
||||||
result[0].height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
|
||||||
result[0].redBits = r;
|
|
||||||
result[0].greenBits = g;
|
|
||||||
result[0].blueBits = b;
|
|
||||||
result[0].refreshRate = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
@ -387,10 +387,7 @@ void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|||||||
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
sr = XRRGetScreenResources(_glfw.x11.display, _glfw.x11.root);
|
||||||
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
ci = XRRGetCrtcInfo(_glfw.x11.display, sr, monitor->x11.crtc);
|
||||||
|
|
||||||
mode->width = ci->width;
|
*mode = vidmodeFromModeInfo(getModeInfo(sr, ci->mode));
|
||||||
mode->height = ci->height;
|
|
||||||
|
|
||||||
mode->refreshRate = calculateRefreshRate(getModeInfo(sr, ci->mode));
|
|
||||||
|
|
||||||
XRRFreeCrtcInfo(ci);
|
XRRFreeCrtcInfo(ci);
|
||||||
XRRFreeScreenResources(sr);
|
XRRFreeScreenResources(sr);
|
||||||
@ -400,11 +397,11 @@ void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode)
|
|||||||
mode->width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
mode->width = DisplayWidth(_glfw.x11.display, _glfw.x11.screen);
|
||||||
mode->height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
mode->height = DisplayHeight(_glfw.x11.display, _glfw.x11.screen);
|
||||||
mode->refreshRate = 0;
|
mode->refreshRate = 0;
|
||||||
}
|
|
||||||
|
|
||||||
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
_glfwSplitBPP(DefaultDepth(_glfw.x11.display, _glfw.x11.screen),
|
||||||
&mode->redBits, &mode->greenBits, &mode->blueBits);
|
&mode->redBits, &mode->greenBits, &mode->blueBits);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user