2 * DirectDraw XVidMode interface
4 * Copyright 2001 TransGaming Technologies, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifdef HAVE_LIBXXF86VM
31 #include <X11/extensions/xf86vmode.h>
32 #endif /* HAVE_LIBXXF86VM */
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(xvidmode);
45 #ifdef HAVE_LIBXXF86VM
47 extern int usexvidmode;
49 static int xf86vm_event, xf86vm_error, xf86vm_major, xf86vm_minor;
51 #ifdef X_XF86VidModeSetGammaRamp
52 static int xf86vm_gammaramp_size;
53 static BOOL xf86vm_use_gammaramp;
54 #endif /* X_XF86VidModeSetGammaRamp */
56 static LPDDHALMODEINFO dd_modes;
57 static unsigned int dd_mode_count;
58 static XF86VidModeModeInfo** real_xf86vm_modes;
59 static unsigned int real_xf86vm_mode_count;
61 static void convert_modeinfo( const XF86VidModeModeInfo *mode)
64 if (mode->htotal!=0 && mode->vtotal!=0)
65 rate = mode->dotclock * 1000 / (mode->htotal * mode->vtotal);
68 X11DRV_Settings_AddOneMode(mode->hdisplay, mode->vdisplay, 0, rate);
71 static void convert_modeline(int dotclock, const XF86VidModeModeLine *mode, LPDDHALMODEINFO info, unsigned int bpp)
73 info->dwWidth = mode->hdisplay;
74 info->dwHeight = mode->vdisplay;
75 if (mode->htotal!=0 && mode->vtotal!=0)
76 info->wRefreshRate = dotclock * 1000 / (mode->htotal * mode->vtotal);
78 info->wRefreshRate = 0;
79 TRACE(" width=%ld, height=%ld, refresh=%d\n",
80 info->dwWidth, info->dwHeight, info->wRefreshRate);
87 info->dwAlphaBitMask = 0;
90 static int XVidModeErrorHandler(Display *dpy, XErrorEvent *event, void *arg)
95 int X11DRV_XF86VM_GetCurrentMode(void)
97 XF86VidModeModeLine line;
100 DWORD dwBpp = screen_depth;
101 if (dwBpp == 24) dwBpp = 32;
103 TRACE("Querying XVidMode current mode\n");
105 XF86VidModeGetModeLine(gdi_display, DefaultScreen(gdi_display), &dotclock, &line);
107 convert_modeline(dotclock, &line, &cmode, dwBpp);
108 for (i=0; i<dd_mode_count; i++)
109 if (memcmp(&dd_modes[i], &cmode, sizeof(cmode)) == 0) {
110 TRACE("mode=%d\n", i);
113 ERR("In unknown mode, returning default\n");
117 void X11DRV_XF86VM_SetCurrentMode(int mode)
119 DWORD dwBpp = screen_depth;
120 if (dwBpp == 24) dwBpp = 32;
121 /* only set modes from the original color depth */
122 if (dwBpp != dd_modes[mode].dwBPP)
124 FIXME("Cannot change screen BPP from %ld to %ld\n", dwBpp, dd_modes[mode].dwBPP);
126 mode = mode % real_xf86vm_mode_count;
129 TRACE("Resizing X display to %dx%d\n",
130 real_xf86vm_modes[mode]->hdisplay, real_xf86vm_modes[mode]->vdisplay);
131 XF86VidModeSwitchToMode(gdi_display, DefaultScreen(gdi_display), real_xf86vm_modes[mode]);
132 #if 0 /* it is said that SetViewPort causes problems with some X servers */
133 XF86VidModeSetViewPort(gdi_display, DefaultScreen(gdi_display), 0, 0);
135 XWarpPointer(gdi_display, None, DefaultRootWindow(gdi_display), 0, 0, 0, 0, 0, 0);
137 XSync(gdi_display, False);
139 X11DRV_handle_desktop_resize( real_xf86vm_modes[mode]->hdisplay,
140 real_xf86vm_modes[mode]->vdisplay );
143 void X11DRV_XF86VM_Init(void)
147 DWORD dwBpp = screen_depth;
148 if (dwBpp == 24) dwBpp = 32;
150 if (xf86vm_major) return; /* already initialized? */
152 if (!usexvidmode) return;
154 /* see if XVidMode is available */
156 ok = XF86VidModeQueryExtension(gdi_display, &xf86vm_event, &xf86vm_error);
159 X11DRV_expect_error(gdi_display, XVidModeErrorHandler, NULL);
160 ok = XF86VidModeQueryVersion(gdi_display, &xf86vm_major, &xf86vm_minor);
161 if (X11DRV_check_error()) ok = FALSE;
165 #ifdef X_XF86VidModeSetGammaRamp
166 if (xf86vm_major > 2 || (xf86vm_major == 2 && xf86vm_minor >= 1))
168 XF86VidModeGetGammaRampSize(gdi_display, DefaultScreen(gdi_display),
169 &xf86vm_gammaramp_size);
170 if (xf86vm_gammaramp_size == 256)
171 xf86vm_use_gammaramp = TRUE;
173 #endif /* X_XF86VidModeSetGammaRamp */
176 if (!using_wine_desktop) ok = XF86VidModeGetAllModeLines(gdi_display, DefaultScreen(gdi_display), &nmodes, &real_xf86vm_modes);
181 /* In desktop mode, do not switch resolution... But still use the Gamma ramp stuff */
182 if (using_wine_desktop) return;
184 TRACE("XVidMode modes: count=%d\n", nmodes);
186 real_xf86vm_mode_count = nmodes;
188 dd_modes = X11DRV_Settings_SetHandlers("XF86VidMode",
189 X11DRV_XF86VM_GetCurrentMode,
190 X11DRV_XF86VM_SetCurrentMode,
193 /* convert modes to DDHALMODEINFO format */
194 for (i=0; i<real_xf86vm_mode_count; i++)
196 convert_modeinfo(real_xf86vm_modes[i]);
198 /* add modes for different color depths */
199 X11DRV_Settings_AddDepthModes();
200 dd_mode_count = X11DRV_Settings_GetModeCount();
202 TRACE("Available DD modes: count=%d\n", dd_mode_count);
204 /* the first mode in the list seems to be the default */
205 X11DRV_Settings_SetDefaultMode(0);
207 TRACE("Enabling XVidMode\n");
210 void X11DRV_XF86VM_Cleanup(void)
213 if (real_xf86vm_modes) XFree(real_xf86vm_modes);
217 void X11DRV_XF86VM_SetExclusiveMode(int lock)
219 if (!dd_modes) return; /* no XVidMode */
222 XF86VidModeLockModeSwitch(gdi_display, DefaultScreen(gdi_display), lock);
226 /***** GAMMA CONTROL *****/
227 /* (only available in XF86VidMode 2.x) */
229 #ifdef X_XF86VidModeSetGamma
231 static void GenerateRampFromGamma(WORD ramp[256], float gamma)
233 float r_gamma = 1/gamma;
235 TRACE("gamma is %f\n", r_gamma);
236 for (i=0; i<256; i++)
237 ramp[i] = pow(i/255.0, r_gamma) * 65535.0;
240 static BOOL ComputeGammaFromRamp(WORD ramp[256], float *gamma)
242 float r_x, r_y, r_lx, r_ly, r_d, r_v, r_e, g_avg, g_min, g_max;
243 unsigned i, f, l, g_n, c;
247 ERR("inverted or flat gamma ramp (%d->%d), rejected\n", f, l);
251 g_min = g_max = g_avg = 0.0;
252 /* check gamma ramp entries to estimate the gamma */
253 TRACE("analyzing gamma ramp (%d->%d)\n", f, l);
254 for (i=1, g_n=0; i<255; i++) {
255 if (ramp[i] < f || ramp[i] > l) {
256 ERR("strange gamma ramp ([%d]=%d for %d->%d), rejected\n", i, ramp[i], f, l);
260 if (!c) continue; /* avoid log(0) */
262 /* normalize entry values into 0..1 range */
263 r_x = i/255.0; r_y = c / r_d;
264 /* compute logarithms of values */
265 r_lx = log(r_x); r_ly = log(r_y);
266 /* compute gamma for this entry */
268 /* compute differential (error estimate) for this entry */
269 /* some games use table-based logarithms that magnifies the error by 128 */
270 r_e = -r_lx * 128 / (c * r_lx * r_lx);
272 /* compute min & max while compensating for estimated error */
273 if (!g_n || g_min > (r_v + r_e)) g_min = r_v + r_e;
274 if (!g_n || g_max < (r_v - r_e)) g_max = r_v - r_e;
279 /* TRACE("[%d]=%d, gamma=%f, error=%f\n", i, ramp[i], r_v, r_e); */
282 ERR("no gamma data, shouldn't happen\n");
286 TRACE("low bias is %d, high is %d, gamma is %5.3f\n", f, 65535-l, g_avg);
287 /* the bias could be because the app wanted something like a "red shift"
288 * like when you're hit in Quake, but XVidMode doesn't support it,
289 * so we have to reject a significant bias */
290 if (f && f > (pow(1/255.0, g_avg) * 65536.0)) {
291 ERR("low-biased gamma ramp (%d), rejected\n", f);
294 /* check that the gamma is reasonably uniform across the ramp */
295 if (g_max - g_min > 0.1) {
296 ERR("ramp not uniform (max=%f, min=%f, avg=%f), rejected\n", g_max, g_min, g_avg);
299 /* ok, now we're pretty sure we can set the desired gamma ramp,
305 #endif /* X_XF86VidModeSetGamma */
307 /* Hmm... should gamma control be available in desktop mode or not?
308 * I'll assume that it should */
310 BOOL X11DRV_XF86VM_GetGammaRamp(LPDDGAMMARAMP ramp)
312 #ifdef X_XF86VidModeSetGamma
313 XF86VidModeGamma gamma;
316 if (xf86vm_major < 2) return FALSE; /* no gamma control */
317 #ifdef X_XF86VidModeSetGammaRamp
318 else if (xf86vm_use_gammaramp)
322 ret = XF86VidModeGetGammaRamp(gdi_display, DefaultScreen(gdi_display), 256,
323 ramp->red, ramp->green, ramp->blue);
331 ret = XF86VidModeGetGamma(gdi_display, DefaultScreen(gdi_display), &gamma);
334 GenerateRampFromGamma(ramp->red, gamma.red);
335 GenerateRampFromGamma(ramp->green, gamma.green);
336 GenerateRampFromGamma(ramp->blue, gamma.blue);
340 #endif /* X_XF86VidModeSetGamma */
344 BOOL X11DRV_XF86VM_SetGammaRamp(LPDDGAMMARAMP ramp)
346 #ifdef X_XF86VidModeSetGamma
347 XF86VidModeGamma gamma;
349 if (xf86vm_major < 2) return FALSE; /* no gamma control */
350 #ifdef X_XF86VidModeSetGammaRamp
351 else if (xf86vm_use_gammaramp)
355 ret = XF86VidModeSetGammaRamp(gdi_display, DefaultScreen(gdi_display), 256,
356 ramp->red, ramp->green, ramp->blue);
363 if (ComputeGammaFromRamp(ramp->red, &gamma.red) &&
364 ComputeGammaFromRamp(ramp->green, &gamma.green) &&
365 ComputeGammaFromRamp(ramp->blue, &gamma.blue)) {
368 ret = XF86VidModeSetGamma(gdi_display, DefaultScreen(gdi_display), &gamma);
373 #endif /* X_XF86VidModeSetGamma */
377 #endif /* HAVE_LIBXXF86VM */
379 /***********************************************************************
380 * GetDeviceGammaRamp (X11DRV.@)
382 * FIXME: should move to somewhere appropriate, but probably not before
383 * the stuff in graphics/x11drv/ has been moved to dlls/x11drv, so that
384 * they can include xvidmode.h directly
386 BOOL X11DRV_GetDeviceGammaRamp(X11DRV_PDEVICE *physDev, LPVOID ramp)
388 #ifdef HAVE_LIBXXF86VM
389 return X11DRV_XF86VM_GetGammaRamp(ramp);
395 /***********************************************************************
396 * SetDeviceGammaRamp (X11DRV.@)
398 * FIXME: should move to somewhere appropriate, but probably not before
399 * the stuff in graphics/x11drv/ has been moved to dlls/x11drv, so that
400 * they can include xvidmode.h directly
402 BOOL X11DRV_SetDeviceGammaRamp(X11DRV_PDEVICE *physDev, LPVOID ramp)
404 #ifdef HAVE_LIBXXF86VM
405 return X11DRV_XF86VM_SetGammaRamp(ramp);