2 * Wine X11drv Xrandr interface
4 * Copyright 2003 Alexander James Pasadyn
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
29 #include <X11/extensions/Xrandr.h>
38 #include "wine/library.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(xrandr
);
43 static void *xrandr_handle
;
45 /* some default values just in case */
47 #define SONAME_LIBX11 "libX11.so"
49 #ifndef SONAME_LIBXEXT
50 #define SONAME_LIBXEXT "libXext.so"
52 #ifndef SONAME_LIBXRENDER
53 #define SONAME_LIBXRENDER "libXrender.so"
55 #ifndef SONAME_LIBXRANDR
56 #define SONAME_LIBXRANDR "libXrandr.so"
59 #define MAKE_FUNCPTR(f) static typeof(f) * p##f;
60 MAKE_FUNCPTR(XRRConfigCurrentConfiguration
)
61 MAKE_FUNCPTR(XRRConfigCurrentRate
)
62 MAKE_FUNCPTR(XRRFreeScreenConfigInfo
)
63 MAKE_FUNCPTR(XRRGetScreenInfo
)
64 MAKE_FUNCPTR(XRRQueryExtension
)
65 MAKE_FUNCPTR(XRRQueryVersion
)
66 MAKE_FUNCPTR(XRRRates
)
67 MAKE_FUNCPTR(XRRSetScreenConfig
)
68 MAKE_FUNCPTR(XRRSetScreenConfigAndRate
)
69 MAKE_FUNCPTR(XRRSizes
)
74 static int xrandr_event
, xrandr_error
, xrandr_major
, xrandr_minor
;
76 static LPDDHALMODEINFO dd_modes
;
77 static unsigned int dd_mode_count
;
78 static XRRScreenSize
*real_xrandr_sizes
;
79 static short **real_xrandr_rates
;
80 static int real_xrandr_sizes_count
;
81 static int *real_xrandr_rates_count
;
82 static unsigned int real_xrandr_modes_count
;
84 static int load_xrandr(void)
88 if (wine_dlopen(SONAME_LIBX11
, RTLD_NOW
|RTLD_GLOBAL
, NULL
, 0) &&
89 wine_dlopen(SONAME_LIBXEXT
, RTLD_NOW
|RTLD_GLOBAL
, NULL
, 0) &&
90 wine_dlopen(SONAME_LIBXRENDER
, RTLD_NOW
|RTLD_GLOBAL
, NULL
, 0) &&
91 (xrandr_handle
= wine_dlopen(SONAME_LIBXRANDR
, RTLD_NOW
, NULL
, 0)))
94 #define LOAD_FUNCPTR(f) \
95 if((p##f = wine_dlsym(xrandr_handle, #f, NULL, 0)) == NULL) \
98 LOAD_FUNCPTR(XRRConfigCurrentConfiguration
)
99 LOAD_FUNCPTR(XRRConfigCurrentRate
)
100 LOAD_FUNCPTR(XRRFreeScreenConfigInfo
)
101 LOAD_FUNCPTR(XRRGetScreenInfo
)
102 LOAD_FUNCPTR(XRRQueryExtension
)
103 LOAD_FUNCPTR(XRRQueryVersion
)
104 LOAD_FUNCPTR(XRRRates
)
105 LOAD_FUNCPTR(XRRSetScreenConfig
)
106 LOAD_FUNCPTR(XRRSetScreenConfigAndRate
)
107 LOAD_FUNCPTR(XRRSizes
)
114 if (!r
) TRACE("Unable to load function ptrs from XRandR library\n");
119 static int XRandRErrorHandler(Display
*dpy
, XErrorEvent
*event
, void *arg
)
125 /* create the mode structures */
126 static void make_modes(void)
130 for (i
=0; i
<real_xrandr_sizes_count
; i
++)
132 if (real_xrandr_rates_count
[i
])
134 for (j
=0; j
< real_xrandr_rates_count
[i
]; j
++)
136 X11DRV_Settings_AddOneMode(real_xrandr_sizes
[i
].width
,
137 real_xrandr_sizes
[i
].height
,
138 0, real_xrandr_rates
[i
][j
]);
143 X11DRV_Settings_AddOneMode(real_xrandr_sizes
[i
].width
,
144 real_xrandr_sizes
[i
].height
,
150 static int X11DRV_XRandR_GetCurrentMode(void)
155 XRRScreenConfiguration
*sc
;
161 root
= RootWindow (gdi_display
, DefaultScreen(gdi_display
));
162 sc
= pXRRGetScreenInfo (gdi_display
, root
);
163 size
= pXRRConfigCurrentConfiguration (sc
, &rot
);
164 rate
= pXRRConfigCurrentRate (sc
);
165 pXRRFreeScreenConfigInfo(sc
);
167 for (i
= 0; i
< real_xrandr_modes_count
; i
++)
169 if ( (dd_modes
[i
].dwWidth
== real_xrandr_sizes
[size
].width
) &&
170 (dd_modes
[i
].dwHeight
== real_xrandr_sizes
[size
].height
) &&
171 (dd_modes
[i
].wRefreshRate
== rate
) )
179 ERR("In unknown mode, returning default\n");
185 static LONG
X11DRV_XRandR_SetCurrentMode(int mode
)
190 XRRScreenConfiguration
*sc
;
191 Status stat
= RRSetConfigSuccess
;
195 DWORD dwBpp
= screen_depth
;
196 if (dwBpp
== 24) dwBpp
= 32;
199 root
= RootWindow (gdi_display
, DefaultScreen(gdi_display
));
200 sc
= pXRRGetScreenInfo (gdi_display
, root
);
201 size
= pXRRConfigCurrentConfiguration (sc
, &rot
);
202 if (dwBpp
!= dd_modes
[mode
].dwBPP
)
204 FIXME("Cannot change screen BPP from %d to %d\n", dwBpp
, dd_modes
[mode
].dwBPP
);
206 mode
= mode
%real_xrandr_modes_count
;
208 TRACE("Changing Resolution to %dx%d @%d Hz\n",
209 dd_modes
[mode
].dwWidth
,
210 dd_modes
[mode
].dwHeight
,
211 dd_modes
[mode
].wRefreshRate
);
213 for (i
= 0; i
< real_xrandr_sizes_count
; i
++)
215 if ( (dd_modes
[mode
].dwWidth
== real_xrandr_sizes
[i
].width
) &&
216 (dd_modes
[mode
].dwHeight
== real_xrandr_sizes
[i
].height
) )
219 if (real_xrandr_rates_count
[i
])
221 for (j
=0; j
< real_xrandr_rates_count
[i
]; j
++)
223 if (dd_modes
[mode
].wRefreshRate
== real_xrandr_rates
[i
][j
])
225 rate
= real_xrandr_rates
[i
][j
];
226 TRACE("Resizing X display to %dx%d @%d Hz\n",
227 dd_modes
[mode
].dwWidth
, dd_modes
[mode
].dwHeight
, rate
);
228 stat
= pXRRSetScreenConfigAndRate (gdi_display
, sc
, root
,
229 size
, rot
, rate
, CurrentTime
);
236 TRACE("Resizing X display to %dx%d <default Hz>\n",
237 dd_modes
[mode
].dwWidth
, dd_modes
[mode
].dwHeight
);
238 stat
= pXRRSetScreenConfig (gdi_display
, sc
, root
, size
, rot
, CurrentTime
);
243 pXRRFreeScreenConfigInfo(sc
);
245 if (stat
== RRSetConfigSuccess
)
247 X11DRV_handle_desktop_resize( dd_modes
[mode
].dwWidth
, dd_modes
[mode
].dwHeight
);
248 return DISP_CHANGE_SUCCESSFUL
;
251 ERR("Resolution change not successful -- perhaps display has changed?\n");
252 return DISP_CHANGE_FAILED
;
255 void X11DRV_XRandR_Init(void)
261 if (xrandr_major
) return; /* already initialized? */
262 if (!usexrandr
) return; /* disabled in config */
263 if (root_window
!= DefaultRootWindow( gdi_display
)) return;
264 if (!load_xrandr()) return; /* can't load the Xrandr library */
266 /* see if Xrandr is available */
268 ok
= pXRRQueryExtension(gdi_display
, &xrandr_event
, &xrandr_error
);
271 X11DRV_expect_error(gdi_display
, XRandRErrorHandler
, NULL
);
272 ok
= pXRRQueryVersion(gdi_display
, &xrandr_major
, &xrandr_minor
);
273 if (X11DRV_check_error()) ok
= FALSE
;
277 TRACE("Found XRandR - major: %d, minor: %d\n", xrandr_major
, xrandr_minor
);
279 real_xrandr_sizes
= pXRRSizes(gdi_display
, DefaultScreen(gdi_display
), &real_xrandr_sizes_count
);
280 ok
= (real_xrandr_sizes_count
>0);
284 TRACE("XRandR: found %u resolutions sizes\n", real_xrandr_sizes_count
);
285 real_xrandr_rates
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(short *) * real_xrandr_sizes_count
);
286 real_xrandr_rates_count
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(int) * real_xrandr_sizes_count
);
287 for (i
=0; i
< real_xrandr_sizes_count
; i
++)
289 real_xrandr_rates
[i
] = pXRRRates (gdi_display
, DefaultScreen(gdi_display
), i
, &(real_xrandr_rates_count
[i
]));
290 TRACE("- at %u: %dx%d (%d rates):", i
, real_xrandr_sizes
[i
].width
, real_xrandr_sizes
[i
].height
, real_xrandr_rates_count
[i
]);
291 if (real_xrandr_rates_count
[i
])
294 nmodes
+= real_xrandr_rates_count
[i
];
295 for (j
= 0; j
< real_xrandr_rates_count
[i
]; ++j
) {
296 if (j
> 0) TRACE(",");
297 TRACE(" %d", real_xrandr_rates
[i
][j
]);
311 real_xrandr_modes_count
= nmodes
;
312 TRACE("XRandR modes: count=%d\n", nmodes
);
314 dd_modes
= X11DRV_Settings_SetHandlers("XRandR",
315 X11DRV_XRandR_GetCurrentMode
,
316 X11DRV_XRandR_SetCurrentMode
,
319 X11DRV_Settings_AddDepthModes();
320 dd_mode_count
= X11DRV_Settings_GetModeCount();
321 X11DRV_Settings_SetDefaultMode(0);
323 TRACE("Available DD modes: count=%d\n", dd_mode_count
);
324 TRACE("Enabling XRandR\n");
327 void X11DRV_XRandR_Cleanup(void)
329 HeapFree(GetProcessHeap(), 0, real_xrandr_rates
);
330 real_xrandr_rates
= NULL
;
331 HeapFree(GetProcessHeap(), 0, real_xrandr_rates_count
);
332 real_xrandr_rates_count
= NULL
;
335 #endif /* HAVE_LIBXRANDR */