2001-02-14 01:27:34 +01:00
|
|
|
/*
|
|
|
|
* DirectDraw XVidMode interface
|
|
|
|
*
|
|
|
|
* Copyright 2001 TransGaming Technologies, Inc.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-02-14 01:27:34 +01:00
|
|
|
*/
|
|
|
|
|
2001-05-18 22:59:22 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
2003-04-22 02:15:48 +02:00
|
|
|
#include <stdio.h>
|
2001-02-14 01:27:34 +01:00
|
|
|
|
|
|
|
#include "ts_xlib.h"
|
2002-09-24 20:36:51 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
#define XMD_H
|
|
|
|
#include "basetsd.h"
|
|
|
|
#include <X11/extensions/xf86vmode.h>
|
|
|
|
#endif /* HAVE_LIBXXF86VM */
|
2001-02-14 01:27:34 +01:00
|
|
|
#include "x11drv.h"
|
2002-09-24 20:36:51 +02:00
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
#include "x11ddraw.h"
|
|
|
|
#include "xvidmode.h"
|
2001-02-14 01:27:34 +01:00
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "ddrawi.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2001-05-18 22:59:22 +02:00
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
|
2001-09-11 01:05:57 +02:00
|
|
|
extern int usexvidmode;
|
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
static int xf86vm_event, xf86vm_error, xf86vm_major, xf86vm_minor;
|
|
|
|
|
2001-10-21 17:02:01 +02:00
|
|
|
#ifdef X_XF86VidModeSetGammaRamp
|
|
|
|
static int xf86vm_gammaramp_size;
|
|
|
|
static BOOL xf86vm_use_gammaramp;
|
|
|
|
#endif
|
|
|
|
|
2003-04-22 02:15:48 +02:00
|
|
|
static LPDDHALMODEINFO xf86vm_modes;
|
|
|
|
static unsigned xf86vm_mode_count;
|
|
|
|
static XF86VidModeModeInfo** modes;
|
|
|
|
static unsigned int xf86vm_initial_mode;
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2001-09-11 02:32:32 +02:00
|
|
|
static void convert_modeinfo( const XF86VidModeModeInfo *mode, LPDDHALMODEINFO info )
|
2001-02-14 01:27:34 +01:00
|
|
|
{
|
2001-09-11 02:32:32 +02:00
|
|
|
info->dwWidth = mode->hdisplay;
|
|
|
|
info->dwHeight = mode->vdisplay;
|
2001-09-14 02:05:44 +02:00
|
|
|
if (mode->htotal!=0 && mode->vtotal!=0)
|
|
|
|
info->wRefreshRate = mode->dotclock * 1000 / (mode->htotal * mode->vtotal);
|
|
|
|
else
|
|
|
|
info->wRefreshRate = 0;
|
2001-09-11 02:32:32 +02:00
|
|
|
TRACE(" width=%ld, height=%ld, refresh=%d\n",
|
|
|
|
info->dwWidth, info->dwHeight, info->wRefreshRate);
|
|
|
|
/* XVidMode cannot change display depths... */
|
|
|
|
/* let's not bother with filling out these then... */
|
|
|
|
info->lPitch = 0;
|
|
|
|
info->dwBPP = 0;
|
|
|
|
info->wFlags = 0;
|
|
|
|
info->dwRBitMask = 0;
|
|
|
|
info->dwGBitMask = 0;
|
|
|
|
info->dwBBitMask = 0;
|
|
|
|
info->dwAlphaBitMask = 0;
|
2001-02-14 01:27:34 +01:00
|
|
|
}
|
|
|
|
|
2001-09-11 02:32:32 +02:00
|
|
|
static void convert_modeline(int dotclock, const XF86VidModeModeLine *mode, LPDDHALMODEINFO info)
|
2001-02-14 01:27:34 +01:00
|
|
|
{
|
2001-09-11 02:32:32 +02:00
|
|
|
info->dwWidth = mode->hdisplay;
|
|
|
|
info->dwHeight = mode->vdisplay;
|
2001-09-14 02:05:44 +02:00
|
|
|
if (mode->htotal!=0 && mode->vtotal!=0)
|
|
|
|
info->wRefreshRate = dotclock * 1000 / (mode->htotal * mode->vtotal);
|
|
|
|
else
|
|
|
|
info->wRefreshRate = 0;
|
2001-09-11 02:32:32 +02:00
|
|
|
TRACE(" width=%ld, height=%ld, refresh=%d\n",
|
|
|
|
info->dwWidth, info->dwHeight, info->wRefreshRate);
|
|
|
|
/* XVidMode cannot change display depths... */
|
|
|
|
/* let's not bother with filling out these then... */
|
|
|
|
info->lPitch = 0;
|
|
|
|
info->dwBPP = 0;
|
|
|
|
info->wFlags = 0;
|
|
|
|
info->dwRBitMask = 0;
|
|
|
|
info->dwGBitMask = 0;
|
|
|
|
info->dwBBitMask = 0;
|
|
|
|
info->dwAlphaBitMask = 0;
|
2001-02-14 01:27:34 +01:00
|
|
|
}
|
|
|
|
|
2002-07-16 03:16:44 +02:00
|
|
|
static int XVidModeErrorHandler(Display *dpy, XErrorEvent *event, void *arg)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-02-14 01:27:34 +01:00
|
|
|
void X11DRV_XF86VM_Init(void)
|
|
|
|
{
|
2001-03-20 02:24:08 +01:00
|
|
|
int nmodes, i;
|
2002-07-16 03:16:44 +02:00
|
|
|
Bool ok;
|
2003-07-15 22:44:24 +02:00
|
|
|
Bool in_desktop_mode = (root_window != DefaultRootWindow(gdi_display));
|
2001-03-20 02:24:08 +01:00
|
|
|
|
|
|
|
if (xf86vm_major) return; /* already initialized? */
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2001-09-11 01:05:57 +02:00
|
|
|
if (!usexvidmode) return;
|
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
/* see if XVidMode is available */
|
2002-09-24 20:36:51 +02:00
|
|
|
wine_tsx11_lock();
|
2002-09-29 20:02:40 +02:00
|
|
|
ok = XF86VidModeQueryExtension(gdi_display, &xf86vm_event, &xf86vm_error);
|
2002-09-24 20:36:51 +02:00
|
|
|
if (ok)
|
2001-10-21 17:02:01 +02:00
|
|
|
{
|
2002-09-24 20:36:51 +02:00
|
|
|
X11DRV_expect_error(gdi_display, XVidModeErrorHandler, NULL);
|
|
|
|
ok = XF86VidModeQueryVersion(gdi_display, &xf86vm_major, &xf86vm_minor);
|
|
|
|
if (X11DRV_check_error()) ok = FALSE;
|
2001-10-21 17:02:01 +02:00
|
|
|
}
|
2002-09-24 20:36:51 +02:00
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
#ifdef X_XF86VidModeSetGammaRamp
|
|
|
|
if (xf86vm_major > 2 || (xf86vm_major == 2 && xf86vm_minor >= 1))
|
|
|
|
{
|
|
|
|
XF86VidModeGetGammaRampSize(gdi_display, DefaultScreen(gdi_display),
|
|
|
|
&xf86vm_gammaramp_size);
|
|
|
|
if (xf86vm_gammaramp_size == 256)
|
|
|
|
xf86vm_use_gammaramp = TRUE;
|
|
|
|
}
|
2001-10-21 17:02:01 +02:00
|
|
|
#endif
|
|
|
|
|
2002-09-24 20:36:51 +02:00
|
|
|
/* retrieve modes */
|
2003-07-15 22:44:24 +02:00
|
|
|
if (!in_desktop_mode) ok = XF86VidModeGetAllModeLines(gdi_display, DefaultScreen(gdi_display), &nmodes, &modes);
|
2002-09-24 20:36:51 +02:00
|
|
|
}
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
if (!ok) return;
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2003-07-15 22:44:24 +02:00
|
|
|
/* In desktop mode, do not switch resolution... But still use the Gamma ramp stuff */
|
|
|
|
if (in_desktop_mode) return;
|
|
|
|
|
2001-02-14 01:27:34 +01:00
|
|
|
TRACE("XVidMode modes: count=%d\n", nmodes);
|
|
|
|
|
|
|
|
xf86vm_mode_count = nmodes;
|
|
|
|
xf86vm_modes = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DDHALMODEINFO) * nmodes);
|
|
|
|
|
|
|
|
/* convert modes to DDHALMODEINFO format */
|
|
|
|
for (i=0; i<nmodes; i++)
|
2002-09-24 20:36:51 +02:00
|
|
|
convert_modeinfo(modes[i], &xf86vm_modes[i]);
|
2003-04-22 02:15:48 +02:00
|
|
|
|
|
|
|
/* store the current mode at the time we started */
|
|
|
|
xf86vm_initial_mode = X11DRV_XF86VM_GetCurrentMode();
|
|
|
|
|
2001-02-14 01:27:34 +01:00
|
|
|
TRACE("Enabling XVidMode\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11DRV_XF86VM_Cleanup(void)
|
|
|
|
{
|
2001-03-20 02:24:08 +01:00
|
|
|
if (modes) TSXFree(modes);
|
2001-02-14 01:27:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int X11DRV_XF86VM_GetCurrentMode(void)
|
|
|
|
{
|
|
|
|
XF86VidModeModeLine line;
|
|
|
|
int dotclock, i;
|
|
|
|
DDHALMODEINFO cmode;
|
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
if (!xf86vm_modes) return 0; /* no XVidMode */
|
|
|
|
|
2001-02-14 01:27:34 +01:00
|
|
|
TRACE("Querying XVidMode current mode\n");
|
2002-09-24 20:36:51 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
XF86VidModeGetModeLine(gdi_display, DefaultScreen(gdi_display), &dotclock, &line);
|
|
|
|
wine_tsx11_unlock();
|
2001-02-14 01:27:34 +01:00
|
|
|
convert_modeline(dotclock, &line, &cmode);
|
|
|
|
for (i=0; i<xf86vm_mode_count; i++)
|
|
|
|
if (memcmp(&xf86vm_modes[i], &cmode, sizeof(cmode)) == 0) {
|
|
|
|
TRACE("mode=%d\n", i);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
ERR("unknown mode, shouldn't happen\n");
|
|
|
|
return 0; /* return first mode */
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11DRV_XF86VM_SetCurrentMode(int mode)
|
|
|
|
{
|
2001-03-20 02:24:08 +01:00
|
|
|
if (!xf86vm_modes) return; /* no XVidMode */
|
|
|
|
|
2002-09-24 20:36:51 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
XF86VidModeSwitchToMode(gdi_display, DefaultScreen(gdi_display), modes[mode]);
|
2001-04-27 20:00:06 +02:00
|
|
|
#if 0 /* it is said that SetViewPort causes problems with some X servers */
|
2002-09-24 20:36:51 +02:00
|
|
|
XF86VidModeSetViewPort(gdi_display, DefaultScreen(gdi_display), 0, 0);
|
2001-04-27 20:00:06 +02:00
|
|
|
#else
|
2002-09-24 20:36:51 +02:00
|
|
|
XWarpPointer(gdi_display, None, DefaultRootWindow(gdi_display), 0, 0, 0, 0, 0, 0);
|
2001-04-27 20:00:06 +02:00
|
|
|
#endif
|
2002-09-24 20:36:51 +02:00
|
|
|
XSync(gdi_display, False);
|
|
|
|
wine_tsx11_unlock();
|
2001-02-14 01:27:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void X11DRV_XF86VM_SetExclusiveMode(int lock)
|
|
|
|
{
|
2001-03-20 02:24:08 +01:00
|
|
|
if (!xf86vm_modes) return; /* no XVidMode */
|
|
|
|
|
2002-09-24 20:36:51 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
XF86VidModeLockModeSwitch(gdi_display, DefaultScreen(gdi_display), lock);
|
|
|
|
wine_tsx11_unlock();
|
2001-02-14 01:27:34 +01:00
|
|
|
}
|
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
/* actual DirectDraw HAL stuff */
|
|
|
|
|
|
|
|
static DWORD PASCAL X11DRV_XF86VM_SetMode(LPDDHAL_SETMODEDATA data)
|
|
|
|
{
|
|
|
|
X11DRV_XF86VM_SetCurrentMode(data->dwModeIndex);
|
2001-04-16 21:54:07 +02:00
|
|
|
X11DRV_DDHAL_SwitchMode(data->dwModeIndex, NULL, NULL);
|
2001-03-20 02:24:08 +01:00
|
|
|
data->ddRVal = DD_OK;
|
|
|
|
return DDHAL_DRIVER_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
int X11DRV_XF86VM_CreateDriver(LPDDHALINFO info)
|
|
|
|
{
|
|
|
|
if (!xf86vm_mode_count) return 0; /* no XVidMode */
|
|
|
|
|
|
|
|
info->dwNumModes = xf86vm_mode_count;
|
|
|
|
info->lpModeInfo = xf86vm_modes;
|
2001-04-16 21:54:07 +02:00
|
|
|
X11DRV_DDHAL_SwitchMode(X11DRV_XF86VM_GetCurrentMode(), NULL, NULL);
|
2001-03-20 02:24:08 +01:00
|
|
|
info->lpDDCallbacks->SetMode = X11DRV_XF86VM_SetMode;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***** GAMMA CONTROL *****/
|
|
|
|
/* (only available in XF86VidMode 2.x) */
|
|
|
|
|
|
|
|
#ifdef X_XF86VidModeSetGamma
|
|
|
|
|
|
|
|
static void GenerateRampFromGamma(WORD ramp[256], float gamma)
|
|
|
|
{
|
|
|
|
float r_gamma = 1/gamma;
|
|
|
|
unsigned i;
|
|
|
|
TRACE("gamma is %f\n", r_gamma);
|
|
|
|
for (i=0; i<256; i++)
|
|
|
|
ramp[i] = pow(i/255.0, r_gamma) * 65535.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL ComputeGammaFromRamp(WORD ramp[256], float *gamma)
|
|
|
|
{
|
|
|
|
float r_x, r_y, r_lx, r_ly, r_d, r_v, r_e, g_avg, g_min, g_max;
|
|
|
|
unsigned i, f, l, g_n, c;
|
|
|
|
f = ramp[0];
|
|
|
|
l = ramp[255];
|
|
|
|
if (f >= l) {
|
|
|
|
ERR("inverted or flat gamma ramp (%d->%d), rejected\n", f, l);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
r_d = l - f;
|
|
|
|
g_min = g_max = g_avg = 0.0;
|
|
|
|
/* check gamma ramp entries to estimate the gamma */
|
|
|
|
TRACE("analyzing gamma ramp (%d->%d)\n", f, l);
|
|
|
|
for (i=1, g_n=0; i<255; i++) {
|
|
|
|
if (ramp[i] < f || ramp[i] > l) {
|
|
|
|
ERR("strange gamma ramp ([%d]=%d for %d->%d), rejected\n", i, ramp[i], f, l);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
c = ramp[i] - f;
|
|
|
|
if (!c) continue; /* avoid log(0) */
|
|
|
|
|
|
|
|
/* normalize entry values into 0..1 range */
|
|
|
|
r_x = i/255.0; r_y = c / r_d;
|
|
|
|
/* compute logarithms of values */
|
|
|
|
r_lx = log(r_x); r_ly = log(r_y);
|
|
|
|
/* compute gamma for this entry */
|
|
|
|
r_v = r_ly / r_lx;
|
|
|
|
/* compute differential (error estimate) for this entry */
|
|
|
|
/* some games use table-based logarithms that magnifies the error by 128 */
|
|
|
|
r_e = -r_lx * 128 / (c * r_lx * r_lx);
|
|
|
|
|
|
|
|
/* compute min & max while compensating for estimated error */
|
|
|
|
if (!g_n || g_min > (r_v + r_e)) g_min = r_v + r_e;
|
|
|
|
if (!g_n || g_max < (r_v - r_e)) g_max = r_v - r_e;
|
2001-09-11 02:32:32 +02:00
|
|
|
|
2001-03-20 02:24:08 +01:00
|
|
|
/* add to average */
|
|
|
|
g_avg += r_v;
|
|
|
|
g_n++;
|
|
|
|
/* TRACE("[%d]=%d, gamma=%f, error=%f\n", i, ramp[i], r_v, r_e); */
|
|
|
|
}
|
|
|
|
if (!g_n) {
|
|
|
|
ERR("no gamma data, shouldn't happen\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
g_avg /= g_n;
|
|
|
|
TRACE("low bias is %d, high is %d, gamma is %5.3f\n", f, 65535-l, g_avg);
|
|
|
|
/* the bias could be because the app wanted something like a "red shift"
|
|
|
|
* like when you're hit in Quake, but XVidMode doesn't support it,
|
|
|
|
* so we have to reject a significant bias */
|
|
|
|
if (f && f > (pow(1/255.0, g_avg) * 65536.0)) {
|
|
|
|
ERR("low-biased gamma ramp (%d), rejected\n", f);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* check that the gamma is reasonably uniform across the ramp */
|
|
|
|
if (g_max - g_min > 0.1) {
|
|
|
|
ERR("ramp not uniform (max=%f, min=%f, avg=%f), rejected\n", g_max, g_min, g_avg);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* ok, now we're pretty sure we can set the desired gamma ramp,
|
|
|
|
* so go for it */
|
|
|
|
*gamma = 1/g_avg;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* X_XF86VidModeSetGamma */
|
|
|
|
|
|
|
|
/* Hmm... should gamma control be available in desktop mode or not?
|
|
|
|
* I'll assume that it should */
|
|
|
|
|
|
|
|
BOOL X11DRV_XF86VM_GetGammaRamp(LPDDGAMMARAMP ramp)
|
|
|
|
{
|
|
|
|
#ifdef X_XF86VidModeSetGamma
|
|
|
|
XF86VidModeGamma gamma;
|
|
|
|
Bool ret;
|
|
|
|
|
|
|
|
if (xf86vm_major < 2) return FALSE; /* no gamma control */
|
2001-10-21 17:02:01 +02:00
|
|
|
#ifdef X_XF86VidModeSetGammaRamp
|
|
|
|
else if (xf86vm_use_gammaramp)
|
|
|
|
{
|
|
|
|
Bool ret;
|
|
|
|
wine_tsx11_lock();
|
|
|
|
ret = XF86VidModeGetGammaRamp(gdi_display, DefaultScreen(gdi_display), 256,
|
|
|
|
ramp->red, ramp->green, ramp->blue);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wine_tsx11_lock();
|
|
|
|
ret = XF86VidModeGetGamma(gdi_display, DefaultScreen(gdi_display), &gamma);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
if (ret) {
|
|
|
|
GenerateRampFromGamma(ramp->red, gamma.red);
|
|
|
|
GenerateRampFromGamma(ramp->green, gamma.green);
|
|
|
|
GenerateRampFromGamma(ramp->blue, gamma.blue);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2001-03-20 02:24:08 +01:00
|
|
|
}
|
|
|
|
#endif /* X_XF86VidModeSetGamma */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL X11DRV_XF86VM_SetGammaRamp(LPDDGAMMARAMP ramp)
|
|
|
|
{
|
|
|
|
#ifdef X_XF86VidModeSetGamma
|
|
|
|
XF86VidModeGamma gamma;
|
|
|
|
|
|
|
|
if (xf86vm_major < 2) return FALSE; /* no gamma control */
|
2001-10-21 17:02:01 +02:00
|
|
|
#ifdef X_XF86VidModeSetGammaRamp
|
|
|
|
else if (xf86vm_use_gammaramp)
|
|
|
|
{
|
|
|
|
Bool ret;
|
|
|
|
wine_tsx11_lock();
|
|
|
|
ret = XF86VidModeSetGammaRamp(gdi_display, DefaultScreen(gdi_display), 256,
|
|
|
|
ramp->red, ramp->green, ramp->blue);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ComputeGammaFromRamp(ramp->red, &gamma.red) &&
|
|
|
|
ComputeGammaFromRamp(ramp->green, &gamma.green) &&
|
|
|
|
ComputeGammaFromRamp(ramp->blue, &gamma.blue)) {
|
|
|
|
Bool ret;
|
|
|
|
wine_tsx11_lock();
|
|
|
|
ret = XF86VidModeSetGamma(gdi_display, DefaultScreen(gdi_display), &gamma);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return ret;
|
|
|
|
}
|
2001-03-20 02:24:08 +01:00
|
|
|
}
|
|
|
|
#endif /* X_XF86VidModeSetGamma */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-02-14 01:27:34 +01:00
|
|
|
#endif /* HAVE_LIBXXF86VM */
|
2001-03-20 02:24:08 +01:00
|
|
|
|
2001-08-09 23:36:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* GetDeviceGammaRamp (X11DRV.@)
|
|
|
|
*
|
|
|
|
* FIXME: should move to somewhere appropriate, but probably not before
|
2001-03-20 02:24:08 +01:00
|
|
|
* the stuff in graphics/x11drv/ has been moved to dlls/x11drv, so that
|
2001-09-11 02:32:32 +02:00
|
|
|
* they can include xvidmode.h directly
|
2001-08-09 23:36:39 +02:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
BOOL X11DRV_GetDeviceGammaRamp(X11DRV_PDEVICE *physDev, LPVOID ramp)
|
2001-03-20 02:24:08 +01:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
return X11DRV_XF86VM_GetGammaRamp(ramp);
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-08-09 23:36:39 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* SetDeviceGammaRamp (X11DRV.@)
|
|
|
|
*
|
|
|
|
* FIXME: should move to somewhere appropriate, but probably not before
|
|
|
|
* the stuff in graphics/x11drv/ has been moved to dlls/x11drv, so that
|
2001-09-11 02:32:32 +02:00
|
|
|
* they can include xvidmode.h directly
|
2001-08-09 23:36:39 +02:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
BOOL X11DRV_SetDeviceGammaRamp(X11DRV_PDEVICE *physDev, LPVOID ramp)
|
2001-03-20 02:24:08 +01:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
return X11DRV_XF86VM_SetGammaRamp(ramp);
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
2003-04-22 02:15:48 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EnumDisplaySettingsExW (X11DRV.@)
|
|
|
|
*/
|
|
|
|
BOOL X11DRV_EnumDisplaySettingsExW( LPCWSTR name, DWORD n, LPDEVMODEW devmode, DWORD flags)
|
|
|
|
{
|
|
|
|
DWORD dwBpp = screen_depth;
|
|
|
|
if (dwBpp == 24) dwBpp = 32;
|
|
|
|
devmode->dmDisplayFlags = 0;
|
|
|
|
devmode->dmDisplayFrequency = 85;
|
|
|
|
devmode->dmSize = sizeof(DEVMODEW);
|
|
|
|
if (n==0 || n == (DWORD)-1 || n == (DWORD)-2)
|
|
|
|
{
|
|
|
|
devmode->dmBitsPerPel = dwBpp;
|
|
|
|
devmode->dmPelsHeight = GetSystemMetrics(SM_CYSCREEN);
|
|
|
|
devmode->dmPelsWidth = GetSystemMetrics(SM_CXSCREEN);
|
|
|
|
devmode->dmFields = (DM_PELSWIDTH|DM_PELSHEIGHT|DM_BITSPERPEL);
|
|
|
|
TRACE("mode %ld -- returning default %ldx%ldx%ldbpp\n", n,
|
|
|
|
devmode->dmPelsWidth, devmode->dmPelsHeight, devmode->dmBitsPerPel);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
if (n <= xf86vm_mode_count)
|
|
|
|
{
|
|
|
|
XF86VidModeModeInfo *mode;
|
|
|
|
mode = modes[n-1];
|
|
|
|
devmode->dmPelsWidth = mode->hdisplay;
|
|
|
|
devmode->dmPelsHeight = mode->vdisplay;
|
|
|
|
devmode->dmBitsPerPel = dwBpp;
|
|
|
|
devmode->dmDisplayFrequency = mode->dotclock * 1000 / (mode->htotal * mode->vtotal);
|
|
|
|
devmode->dmFields = (DM_PELSWIDTH|DM_PELSHEIGHT|DM_BITSPERPEL|DM_DISPLAYFREQUENCY);
|
|
|
|
TRACE("mode %ld -- %ldx%ldx%ldbpp\n", n,
|
|
|
|
devmode->dmPelsWidth, devmode->dmPelsHeight, devmode->dmBitsPerPel);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
TRACE("mode %ld -- not present\n", n);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define _X_FIELD(prefix, bits) if ((fields) & prefix##_##bits) {p+=sprintf(p, "%s%s", first ? "" : ",", #bits); first=FALSE;}
|
|
|
|
static const char * _CDS_flags(DWORD fields)
|
|
|
|
{
|
|
|
|
BOOL first = TRUE;
|
|
|
|
char buf[128];
|
|
|
|
char *p = buf;
|
|
|
|
_X_FIELD(CDS,UPDATEREGISTRY);_X_FIELD(CDS,TEST);_X_FIELD(CDS,FULLSCREEN);
|
|
|
|
_X_FIELD(CDS,GLOBAL);_X_FIELD(CDS,SET_PRIMARY);_X_FIELD(CDS,RESET);
|
|
|
|
_X_FIELD(CDS,SETRECT);_X_FIELD(CDS,NORESET);
|
2003-05-20 21:18:37 +02:00
|
|
|
*p = 0;
|
2003-04-22 02:15:48 +02:00
|
|
|
return wine_dbg_sprintf("%s", buf);
|
|
|
|
}
|
|
|
|
static const char * _DM_fields(DWORD fields)
|
|
|
|
{
|
|
|
|
BOOL first = TRUE;
|
|
|
|
char buf[128];
|
|
|
|
char *p = buf;
|
|
|
|
_X_FIELD(DM,BITSPERPEL);_X_FIELD(DM,PELSWIDTH);_X_FIELD(DM,PELSHEIGHT);
|
|
|
|
_X_FIELD(DM,DISPLAYFLAGS);_X_FIELD(DM,DISPLAYFREQUENCY);_X_FIELD(DM,POSITION);
|
2003-05-20 21:18:37 +02:00
|
|
|
*p = 0;
|
2003-04-22 02:15:48 +02:00
|
|
|
return wine_dbg_sprintf("%s", buf);
|
|
|
|
}
|
|
|
|
#undef _X_FIELD
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ChangeDisplaySettingsExW (X11DRV.@)
|
|
|
|
*/
|
|
|
|
LONG X11DRV_ChangeDisplaySettingsExW( LPCWSTR devname, LPDEVMODEW devmode,
|
|
|
|
HWND hwnd, DWORD flags, LPVOID lpvoid )
|
|
|
|
{
|
|
|
|
DWORD i;
|
|
|
|
DWORD dwBpp = screen_depth;
|
|
|
|
if (dwBpp == 24) dwBpp = 32;
|
|
|
|
TRACE("(%s,%p,%p,0x%08lx,%p\n",debugstr_w(devname),devmode,hwnd,flags,lpvoid);
|
|
|
|
TRACE("flags=%s\n",_CDS_flags(flags));
|
|
|
|
if (devmode==NULL)
|
|
|
|
{
|
|
|
|
TRACE("Return to original display mode\n");
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
X11DRV_XF86VM_SetCurrentMode(xf86vm_initial_mode);
|
|
|
|
#endif
|
|
|
|
return DISP_CHANGE_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TRACE_ON(x11drv))
|
|
|
|
{
|
|
|
|
TRACE("DM_fields=%s\n",_DM_fields(devmode->dmFields));
|
|
|
|
TRACE("width=%ld height=%ld bpp=%ld freq=%ld\n",
|
|
|
|
devmode->dmPelsWidth,devmode->dmPelsHeight,
|
|
|
|
devmode->dmBitsPerPel,devmode->dmDisplayFrequency);
|
|
|
|
}
|
|
|
|
if ((!(devmode->dmFields & DM_BITSPERPEL) || devmode->dmBitsPerPel == dwBpp) &&
|
|
|
|
(!(devmode->dmFields & DM_PELSWIDTH) || devmode->dmPelsWidth == GetSystemMetrics(SM_CXSCREEN)) &&
|
|
|
|
(!(devmode->dmFields & DM_PELSHEIGHT) || devmode->dmPelsHeight == GetSystemMetrics(SM_CYSCREEN)))
|
|
|
|
{
|
|
|
|
/* we have a valid mode */
|
|
|
|
TRACE("Requested mode matches current mode -- no change!\n");
|
|
|
|
return DISP_CHANGE_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBXXF86VM
|
|
|
|
for (i = 0; i < xf86vm_mode_count; i++)
|
|
|
|
{
|
|
|
|
XF86VidModeModeInfo *mode = modes[i];
|
|
|
|
if (devmode->dmFields & DM_BITSPERPEL)
|
|
|
|
{
|
|
|
|
if (devmode->dmBitsPerPel != dwBpp)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (devmode->dmFields & DM_PELSWIDTH)
|
|
|
|
{
|
|
|
|
if (devmode->dmPelsWidth != mode->hdisplay)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (devmode->dmFields & DM_PELSHEIGHT)
|
|
|
|
{
|
|
|
|
if (devmode->dmPelsHeight != mode->vdisplay)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* we have a valid mode */
|
|
|
|
TRACE("Matches mode %ld\n", i);
|
2003-06-16 03:21:31 +02:00
|
|
|
X11DRV_XF86VM_SetCurrentMode(i);
|
2003-04-22 02:15:48 +02:00
|
|
|
#if 0 /* FIXME */
|
|
|
|
SYSMETRICS_Set( SM_CXSCREEN, devmode->dmPelsWidth );
|
|
|
|
SYSMETRICS_Set( SM_CYSCREEN, devmode->dmPelsHeight );
|
|
|
|
#endif
|
|
|
|
return DISP_CHANGE_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* no valid modes found */
|
|
|
|
ERR("No matching mode found!\n");
|
|
|
|
return DISP_CHANGE_BADMODE;
|
|
|
|
}
|