Skip to content

Latest commit

 

History

History
1143 lines (1014 loc) · 35.6 KB

SDL_x11modes.c

File metadata and controls

1143 lines (1014 loc) · 35.6 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* Utilities for getting and setting the X display mode */
Feb 7, 2006
Feb 7, 2006
26
#include <stdio.h>
Apr 26, 2001
Apr 26, 2001
27
28
29
#include "SDL_timer.h"
#include "SDL_events.h"
Feb 16, 2006
Feb 16, 2006
30
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
31
32
33
#include "SDL_x11video.h"
#include "SDL_x11wm_c.h"
#include "SDL_x11modes_c.h"
Jul 7, 2001
Jul 7, 2001
34
#include "SDL_x11image_c.h"
Apr 26, 2001
Apr 26, 2001
35
May 5, 2006
May 5, 2006
36
37
/*#define X11MODES_DEBUG*/
Sep 30, 2002
Sep 30, 2002
38
#define MAX(a, b) (a > b ? a : b)
Nov 4, 2001
Nov 4, 2001
39
May 4, 2006
May 4, 2006
40
41
42
43
44
45
46
47
48
49
50
51
#if SDL_VIDEO_DRIVER_X11_XRANDR
static int cmpmodelist(const void *va, const void *vb)
{
const SDL_Rect *a = *(const SDL_Rect **)va;
const SDL_Rect *b = *(const SDL_Rect **)vb;
if ( a->w == b->w )
return b->h - a->h;
else
return b->w - a->w;
}
#endif
Feb 16, 2006
Feb 16, 2006
52
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Mar 5, 2002
Mar 5, 2002
53
Bool SDL_NAME(XF86VidModeGetModeInfo)(Display *dpy, int scr, SDL_NAME(XF86VidModeModeInfo) *info)
Apr 26, 2001
Apr 26, 2001
54
{
Sep 15, 2008
Sep 15, 2008
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Bool retval;
int dotclock;
SDL_NAME(XF86VidModeModeLine) l;
SDL_memset(&l, 0, sizeof(l));
retval = SDL_NAME(XF86VidModeGetModeLine)(dpy, scr, &dotclock, &l);
info->dotclock = dotclock;
info->hdisplay = l.hdisplay;
info->hsyncstart = l.hsyncstart;
info->hsyncend = l.hsyncend;
info->htotal = l.htotal;
info->hskew = l.hskew;
info->vdisplay = l.vdisplay;
info->vsyncstart = l.vsyncstart;
info->vsyncend = l.vsyncend;
info->vtotal = l.vtotal;
info->flags = l.flags;
info->privsize = l.privsize;
info->private = l.private;
return retval;
Apr 26, 2001
Apr 26, 2001
74
}
Feb 16, 2006
Feb 16, 2006
75
#endif /* SDL_VIDEO_DRIVER_X11_VIDMODE */
Apr 26, 2001
Apr 26, 2001
76
Feb 16, 2006
Feb 16, 2006
77
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 26, 2001
Apr 26, 2001
78
79
static void save_mode(_THIS)
{
Feb 7, 2006
Feb 7, 2006
80
SDL_memset(&saved_mode, 0, sizeof(saved_mode));
Mar 5, 2002
Mar 5, 2002
81
82
SDL_NAME(XF86VidModeGetModeInfo)(SDL_Display,SDL_Screen,&saved_mode);
SDL_NAME(XF86VidModeGetViewPort)(SDL_Display,SDL_Screen,&saved_view.x,&saved_view.y);
Apr 26, 2001
Apr 26, 2001
83
84
85
}
#endif
Feb 16, 2006
Feb 16, 2006
86
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 26, 2001
Apr 26, 2001
87
88
static void restore_mode(_THIS)
{
Mar 5, 2002
Mar 5, 2002
89
SDL_NAME(XF86VidModeModeLine) mode;
Apr 26, 2001
Apr 26, 2001
90
91
int unused;
Mar 5, 2002
Mar 5, 2002
92
if ( SDL_NAME(XF86VidModeGetModeLine)(SDL_Display, SDL_Screen, &unused, &mode) ) {
Apr 26, 2001
Apr 26, 2001
93
94
if ( (saved_mode.hdisplay != mode.hdisplay) ||
(saved_mode.vdisplay != mode.vdisplay) ) {
Mar 5, 2002
Mar 5, 2002
95
SDL_NAME(XF86VidModeSwitchToMode)(SDL_Display, SDL_Screen, &saved_mode);
Apr 26, 2001
Apr 26, 2001
96
97
98
}
}
if ( (saved_view.x != 0) || (saved_view.y != 0) ) {
Mar 5, 2002
Mar 5, 2002
99
SDL_NAME(XF86VidModeSetViewPort)(SDL_Display, SDL_Screen, saved_view.x, saved_view.y);
Apr 26, 2001
Apr 26, 2001
100
101
102
103
}
}
#endif
Feb 16, 2006
Feb 16, 2006
104
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 26, 2001
Apr 26, 2001
105
106
static int cmpmodes(const void *va, const void *vb)
{
Mar 5, 2002
Mar 5, 2002
107
108
const SDL_NAME(XF86VidModeModeInfo) *a = *(const SDL_NAME(XF86VidModeModeInfo)**)va;
const SDL_NAME(XF86VidModeModeInfo) *b = *(const SDL_NAME(XF86VidModeModeInfo)**)vb;
Nov 12, 2004
Nov 12, 2004
109
110
111
112
if ( a->hdisplay == b->hdisplay )
return b->vdisplay - a->vdisplay;
else
return b->hdisplay - a->hdisplay;
Apr 26, 2001
Apr 26, 2001
113
114
115
}
#endif
Nov 22, 2001
Nov 22, 2001
116
117
static void get_real_resolution(_THIS, int* w, int* h);
Apr 26, 2001
Apr 26, 2001
118
119
static void set_best_resolution(_THIS, int width, int height)
{
Feb 16, 2006
Feb 16, 2006
120
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 26, 2001
Apr 26, 2001
121
if ( use_vidmode ) {
Mar 5, 2002
Mar 5, 2002
122
123
SDL_NAME(XF86VidModeModeLine) mode;
SDL_NAME(XF86VidModeModeInfo) **modes;
Apr 26, 2001
Apr 26, 2001
124
125
int i;
int nmodes;
May 5, 2006
May 5, 2006
126
int best = -1;
Apr 26, 2001
Apr 26, 2001
127
Mar 5, 2002
Mar 5, 2002
128
if ( SDL_NAME(XF86VidModeGetModeLine)(SDL_Display, SDL_Screen, &i, &mode) &&
May 5, 2006
May 5, 2006
129
SDL_NAME(XF86VidModeGetAllModeLines)(SDL_Display,SDL_Screen,&nmodes,&modes) ) {
Jun 28, 2003
Jun 28, 2003
130
for ( i = 0; i < nmodes ; i++ ) {
Mar 6, 2003
Mar 6, 2003
131
if ( (modes[i]->hdisplay == width) &&
May 5, 2006
May 5, 2006
132
133
134
135
136
137
138
139
140
141
142
143
(modes[i]->vdisplay == height) ) {
best = i;
break;
}
if ( modes[i]->hdisplay >= width &&
modes[i]->vdisplay >= height ) {
if ( best < 0 ||
(modes[i]->hdisplay < modes[best]->hdisplay &&
modes[i]->vdisplay <= modes[best]->vdisplay) ||
(modes[i]->vdisplay < modes[best]->vdisplay &&
modes[i]->hdisplay <= modes[best]->hdisplay) ) {
best = i;
Jun 28, 2003
Jun 28, 2003
144
145
}
}
Apr 26, 2001
Apr 26, 2001
146
}
May 5, 2006
May 5, 2006
147
148
149
150
151
152
153
154
155
if ( best >= 0 &&
((modes[best]->hdisplay != mode.hdisplay) ||
(modes[best]->vdisplay != mode.vdisplay)) ) {
#ifdef X11MODES_DEBUG
printf("Best Mode %d: %d x %d @ %d\n", best,
modes[best]->hdisplay, modes[best]->vdisplay,
(modes[best]->htotal && modes[best]->vtotal) ? (1000 * modes[best]->dotclock / (modes[best]->htotal * modes[best]->vtotal)) : 0 );
#endif
SDL_NAME(XF86VidModeSwitchToMode)(SDL_Display, SDL_Screen, modes[best]);
Apr 26, 2001
Apr 26, 2001
156
}
Mar 22, 2006
Mar 22, 2006
157
XFree(modes);
Apr 26, 2001
Apr 26, 2001
158
159
}
}
Feb 16, 2006
Feb 16, 2006
160
#endif /* SDL_VIDEO_DRIVER_X11_VIDMODE */
Nov 22, 2001
Nov 22, 2001
161
Sep 30, 2002
Sep 30, 2002
162
/* XiG */
Feb 16, 2006
Feb 16, 2006
163
#if SDL_VIDEO_DRIVER_X11_XME
May 5, 2006
May 5, 2006
164
if ( use_xme && SDL_modelist ) {
Sep 30, 2002
Sep 30, 2002
165
int i;
Nov 22, 2001
Nov 22, 2001
166
May 5, 2006
May 5, 2006
167
168
169
170
#ifdef X11MODES_DEBUG
fprintf(stderr, "XME: set_best_resolution(): w = %d, h = %d\n",
width, height);
#endif
Nov 22, 2001
Nov 22, 2001
171
for ( i=0; SDL_modelist[i]; ++i ) {
Sep 30, 2002
Sep 30, 2002
172
if ( (SDL_modelist[i]->w >= width) &&
Nov 22, 2001
Nov 22, 2001
173
(SDL_modelist[i]->h >= height) ) {
Sep 30, 2002
Sep 30, 2002
174
175
break;
}
Nov 22, 2001
Nov 22, 2001
176
}
Sep 30, 2002
Sep 30, 2002
177
178
179
if ( SDL_modelist[i] ) { /* found one, lets try it */
int w, h;
Nov 22, 2001
Nov 22, 2001
180
181
/* check current mode so we can avoid uneccessary mode changes */
Sep 30, 2002
Sep 30, 2002
182
get_real_resolution(this, &w, &h);
Nov 22, 2001
Nov 22, 2001
183
Sep 30, 2002
Sep 30, 2002
184
if ( (SDL_modelist[i]->w != w) || (SDL_modelist[i]->h != h) ) {
May 4, 2006
May 4, 2006
185
#ifdef X11MODES_DEBUG
Sep 30, 2002
Sep 30, 2002
186
187
fprintf(stderr, "XME: set_best_resolution: "
"XiGMiscChangeResolution: %d %d\n",
May 5, 2006
May 5, 2006
188
189
SDL_modelist[i]->w, SDL_modelist[i]->h);
#endif
Sep 30, 2002
Sep 30, 2002
190
191
192
193
194
195
XiGMiscChangeResolution(SDL_Display,
SDL_Screen,
0, /* view */
SDL_modelist[i]->w,
SDL_modelist[i]->h,
0);
Mar 22, 2006
Mar 22, 2006
196
XSync(SDL_Display, False);
Nov 22, 2001
Nov 22, 2001
197
198
199
}
}
}
Feb 16, 2006
Feb 16, 2006
200
#endif /* SDL_VIDEO_DRIVER_X11_XME */
Nov 22, 2001
Nov 22, 2001
201
Mar 22, 2006
Mar 22, 2006
202
#if SDL_VIDEO_DRIVER_X11_XRANDR
May 5, 2006
May 5, 2006
203
if ( use_xrandr && SDL_modelist ) {
May 4, 2006
May 4, 2006
204
#ifdef X11MODES_DEBUG
Mar 22, 2006
Mar 22, 2006
205
206
207
fprintf(stderr, "XRANDR: set_best_resolution(): w = %d, h = %d\n",
width, height);
#endif
May 5, 2006
May 5, 2006
208
209
210
211
212
213
214
215
216
int i, nsizes;
XRRScreenSize *sizes;
/* find the smallest resolution that is at least as big as the user requested */
sizes = XRRConfigSizes(screen_config, &nsizes);
for ( i = (nsizes-1); i >= 0; i-- ) {
if ( (SDL_modelist[i]->w >= width) &&
(SDL_modelist[i]->h >= height) ) {
break;
Mar 22, 2006
Mar 22, 2006
217
}
May 5, 2006
May 5, 2006
218
}
Mar 22, 2006
Mar 22, 2006
219
May 5, 2006
May 5, 2006
220
221
if ( i >= 0 && SDL_modelist[i] ) { /* found one, lets try it */
int w, h;
Mar 22, 2006
Mar 22, 2006
222
May 5, 2006
May 5, 2006
223
224
/* check current mode so we can avoid uneccessary mode changes */
get_real_resolution(this, &w, &h);
Mar 22, 2006
Mar 22, 2006
225
May 5, 2006
May 5, 2006
226
227
if ( (SDL_modelist[i]->w != w) || (SDL_modelist[i]->h != h) ) {
int size_id;
Mar 22, 2006
Mar 22, 2006
228
May 4, 2006
May 4, 2006
229
#ifdef X11MODES_DEBUG
May 5, 2006
May 5, 2006
230
231
232
fprintf(stderr, "XRANDR: set_best_resolution: "
"XXRSetScreenConfig: %d %d\n",
SDL_modelist[i]->w, SDL_modelist[i]->h);
Mar 22, 2006
Mar 22, 2006
233
234
#endif
May 5, 2006
May 5, 2006
235
236
237
238
239
/* find the matching size entry index */
for ( size_id = 0; size_id < nsizes; ++size_id ) {
if ( (sizes[size_id].width == SDL_modelist[i]->w) &&
(sizes[size_id].height == SDL_modelist[i]->h) )
break;
Mar 22, 2006
Mar 22, 2006
240
}
May 5, 2006
May 5, 2006
241
242
243
XRRSetScreenConfig(SDL_Display, screen_config, SDL_Root,
size_id, saved_rotation, CurrentTime);
Mar 22, 2006
Mar 22, 2006
244
245
246
247
}
}
}
#endif /* SDL_VIDEO_DRIVER_X11_XRANDR */
Apr 26, 2001
Apr 26, 2001
248
249
250
251
}
static void get_real_resolution(_THIS, int* w, int* h)
{
Feb 16, 2006
Feb 16, 2006
252
#if SDL_VIDEO_DRIVER_X11_XME
Nov 22, 2001
Nov 22, 2001
253
254
255
256
257
if ( use_xme ) {
int ractive;
XiGMiscResolutionInfo *modelist;
XiGMiscQueryResolutions(SDL_Display, SDL_Screen,
Sep 30, 2002
Sep 30, 2002
258
259
0, /* view */
&ractive, &modelist);
Nov 22, 2001
Nov 22, 2001
260
261
*w = modelist[ractive].width;
*h = modelist[ractive].height;
May 4, 2006
May 4, 2006
262
#ifdef X11MODES_DEBUG
Nov 22, 2001
Nov 22, 2001
263
264
265
266
267
fprintf(stderr, "XME: get_real_resolution: w = %d h = %d\n", *w, *h);
#endif
XFree(modelist);
return;
}
Mar 22, 2006
Mar 22, 2006
268
269
#endif /* SDL_VIDEO_DRIVER_X11_XME */
May 4, 2006
May 4, 2006
270
271
272
273
274
275
276
277
278
279
280
281
282
#if SDL_VIDEO_DRIVER_X11_VIDMODE
if ( use_vidmode ) {
SDL_NAME(XF86VidModeModeLine) mode;
int unused;
if ( SDL_NAME(XF86VidModeGetModeLine)(SDL_Display, SDL_Screen, &unused, &mode) ) {
*w = mode.hdisplay;
*h = mode.vdisplay;
return;
}
}
#endif /* SDL_VIDEO_DRIVER_X11_VIDMODE */
Mar 22, 2006
Mar 22, 2006
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#if SDL_VIDEO_DRIVER_X11_XRANDR
if ( use_xrandr ) {
int nsizes;
XRRScreenSize* sizes;
sizes = XRRConfigSizes(screen_config, &nsizes);
if ( nsizes > 0 ) {
int cur_size;
Rotation cur_rotation;
cur_size = XRRConfigCurrentConfiguration(screen_config, &cur_rotation);
if ( cur_size >= 0 && cur_size < nsizes ) {
*w = sizes[cur_size].width;
*h = sizes[cur_size].height;
}
May 4, 2006
May 4, 2006
298
#ifdef X11MODES_DEBUG
Mar 22, 2006
Mar 22, 2006
299
300
301
302
303
304
fprintf(stderr, "XRANDR: get_real_resolution: w = %d h = %d\n", *w, *h);
#endif
return;
}
}
#endif /* SDL_VIDEO_DRIVER_X11_XRANDR */
Nov 22, 2001
Nov 22, 2001
305
May 4, 2006
May 4, 2006
306
307
308
309
310
311
312
313
#if SDL_VIDEO_DRIVER_X11_XINERAMA
if ( use_xinerama ) {
*w = xinerama_info.width;
*h = xinerama_info.height;
return;
}
#endif /* SDL_VIDEO_DRIVER_X11_XINERAMA */
Apr 26, 2001
Apr 26, 2001
314
315
316
317
318
319
320
321
322
*w = DisplayWidth(SDL_Display, SDL_Screen);
*h = DisplayHeight(SDL_Display, SDL_Screen);
}
/* Called after mapping a window - waits until the window is mapped */
void X11_WaitMapped(_THIS, Window win)
{
XEvent event;
do {
Mar 22, 2006
Mar 22, 2006
323
XMaskEvent(SDL_Display, StructureNotifyMask, &event);
Apr 26, 2001
Apr 26, 2001
324
325
326
327
328
329
330
331
} while ( (event.type != MapNotify) || (event.xmap.event != win) );
}
/* Called after unmapping a window - waits until the window is unmapped */
void X11_WaitUnmapped(_THIS, Window win)
{
XEvent event;
do {
Mar 22, 2006
Mar 22, 2006
332
XMaskEvent(SDL_Display, StructureNotifyMask, &event);
Apr 26, 2001
Apr 26, 2001
333
334
335
336
337
} while ( (event.type != UnmapNotify) || (event.xunmap.event != win) );
}
static void move_cursor_to(_THIS, int x, int y)
{
Mar 22, 2006
Mar 22, 2006
338
XWarpPointer(SDL_Display, None, SDL_Root, 0, 0, 0, 0, x, y);
Apr 26, 2001
Apr 26, 2001
339
340
}
Sep 27, 2009
Sep 27, 2009
341
342
343
344
345
346
347
348
349
350
351
352
static int add_default_visual(_THIS)
{
int i;
int n = this->hidden->nvisuals;
for (i=0; i<n; i++) {
if (this->hidden->visuals[i].visual == DefaultVisual(SDL_Display, SDL_Screen)) return n;
}
this->hidden->visuals[n].depth = DefaultDepth(SDL_Display, SDL_Screen);;
this->hidden->visuals[n].visual = DefaultVisual(SDL_Display, SDL_Screen);;
this->hidden->nvisuals++;
return(this->hidden->nvisuals);
}
Apr 26, 2001
Apr 26, 2001
353
354
355
static int add_visual(_THIS, int depth, int class)
{
XVisualInfo vi;
Mar 22, 2006
Mar 22, 2006
356
if(XMatchVisualInfo(SDL_Display, SDL_Screen, depth, class, &vi)) {
Sep 30, 2002
Sep 30, 2002
357
358
359
360
int n = this->hidden->nvisuals;
this->hidden->visuals[n].depth = vi.depth;
this->hidden->visuals[n].visual = vi.visual;
this->hidden->nvisuals++;
Apr 26, 2001
Apr 26, 2001
361
362
363
364
365
366
367
368
369
}
return(this->hidden->nvisuals);
}
static int add_visual_byid(_THIS, const char *visual_id)
{
XVisualInfo *vi, template;
int nvis;
if ( visual_id ) {
Feb 7, 2006
Feb 7, 2006
370
371
SDL_memset(&template, 0, (sizeof template));
template.visualid = SDL_strtol(visual_id, NULL, 0);
Mar 22, 2006
Mar 22, 2006
372
vi = XGetVisualInfo(SDL_Display, VisualIDMask, &template, &nvis);
Apr 26, 2001
Apr 26, 2001
373
if ( vi ) {
Sep 30, 2002
Sep 30, 2002
374
375
376
377
int n = this->hidden->nvisuals;
this->hidden->visuals[n].depth = vi->depth;
this->hidden->visuals[n].visual = vi->visual;
this->hidden->nvisuals++;
Mar 22, 2006
Mar 22, 2006
378
XFree(vi);
Apr 26, 2001
Apr 26, 2001
379
380
381
382
383
384
385
386
}
}
return(this->hidden->nvisuals);
}
/* Global for the error handler */
int vm_event, vm_error = -1;
May 4, 2006
May 4, 2006
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#if SDL_VIDEO_DRIVER_X11_XINERAMA
static int CheckXinerama(_THIS, int *major, int *minor)
{
const char *env;
/* Default the extension not available */
*major = *minor = 0;
/* Allow environment override */
env = getenv("SDL_VIDEO_X11_XINERAMA");
if ( env && !SDL_atoi(env) ) {
return 0;
}
/* Query the extension version */
if ( !SDL_NAME(XineramaQueryExtension)(SDL_Display, major, minor) ||
!SDL_NAME(XineramaIsActive)(SDL_Display) ) {
return 0;
}
return 1;
}
#endif /* SDL_VIDEO_DRIVER_X11_XINERAMA */
Apr 29, 2006
Apr 29, 2006
410
411
412
#if SDL_VIDEO_DRIVER_X11_XRANDR
static int CheckXRandR(_THIS, int *major, int *minor)
{
May 4, 2006
May 4, 2006
413
const char *env;
Apr 29, 2006
Apr 29, 2006
414
415
416
417
418
419
420
421
422
423
/* Default the extension not available */
*major = *minor = 0;
/* Allow environment override */
env = getenv("SDL_VIDEO_X11_XRANDR");
if ( env && !SDL_atoi(env) ) {
return 0;
}
Dec 30, 2011
Dec 30, 2011
424
425
/* This defaults off now, due to KDE window maximize problems */
if ( !env ) {
Apr 29, 2006
Apr 29, 2006
426
427
return 0;
}
Dec 30, 2011
Dec 30, 2011
428
Apr 29, 2006
Apr 29, 2006
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
if ( !SDL_X11_HAVE_XRANDR ) {
return 0;
}
/* Query the extension version */
if ( !XRRQueryVersion(SDL_Display, major, minor) ) {
return 0;
}
return 1;
}
#endif /* SDL_VIDEO_DRIVER_X11_XRANDR */
#if SDL_VIDEO_DRIVER_X11_VIDMODE
static int CheckVidMode(_THIS, int *major, int *minor)
{
May 4, 2006
May 4, 2006
444
const char *env;
Apr 29, 2006
Apr 29, 2006
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/* Default the extension not available */
*major = *minor = 0;
/* Allow environment override */
env = getenv("SDL_VIDEO_X11_VIDMODE");
if ( env && !SDL_atoi(env) ) {
return 0;
}
/* Metro-X 4.3.0 and earlier has a broken implementation of
XF86VidModeGetAllModeLines() - it hangs the client.
*/
if ( SDL_strcmp(ServerVendor(SDL_Display), "Metro Link Incorporated") == 0 ) {
FILE *metro_fp;
metro_fp = fopen("/usr/X11R6/lib/X11/Metro/.version", "r");
if ( metro_fp != NULL ) {
Jul 7, 2011
Jul 7, 2011
463
int major, minor, patch, version, scannum;
Apr 29, 2006
Apr 29, 2006
464
major = 0; minor = 0; patch = 0;
Jul 7, 2011
Jul 7, 2011
465
scannum = fscanf(metro_fp, "%d.%d.%d", &major, &minor, &patch);
Apr 29, 2006
Apr 29, 2006
466
fclose(metro_fp);
Jul 7, 2011
Jul 7, 2011
467
468
469
if ( (scannum < 0) || (scannum > 3) ) {
return 0; /* we need _something_ useful from fscanf(). */
}
Apr 29, 2006
Apr 29, 2006
470
471
472
473
474
475
476
477
version = major*100+minor*10+patch;
if ( version < 431 ) {
return 0;
}
}
}
/* Query the extension version */
Apr 29, 2006
Apr 29, 2006
478
vm_error = -1;
Apr 29, 2006
Apr 29, 2006
479
480
481
482
483
484
485
486
487
488
489
if ( !SDL_NAME(XF86VidModeQueryExtension)(SDL_Display, &vm_event, &vm_error) ||
!SDL_NAME(XF86VidModeQueryVersion)(SDL_Display, major, minor) ) {
return 0;
}
return 1;
}
#endif /* SDL_VIDEO_DRIVER_X11_VIDMODE */
#if SDL_VIDEO_DRIVER_X11_XME
static int CheckXME(_THIS, int *major, int *minor)
{
May 4, 2006
May 4, 2006
490
const char *env;
Apr 29, 2006
Apr 29, 2006
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/* Default the extension not available */
*major = *minor = 0;
/* Allow environment override */
env = getenv("SDL_VIDEO_X11_VIDMODE");
if ( env && !SDL_atoi(env) ) {
return 0;
}
/* Query the extension version */
if ( !XiGMiscQueryVersion(SDL_Display, major, minor) ) {
return 0;
}
return 1;
}
#endif /* SDL_VIDEO_DRIVER_X11_XME */
Apr 26, 2001
Apr 26, 2001
509
510
int X11_GetVideoModes(_THIS)
{
May 4, 2006
May 4, 2006
511
512
513
#if SDL_VIDEO_DRIVER_X11_XINERAMA
int xinerama_major, xinerama_minor;
#endif
Apr 29, 2006
Apr 29, 2006
514
515
516
517
518
#if SDL_VIDEO_DRIVER_X11_XRANDR
int xrandr_major, xrandr_minor;
int nsizes;
XRRScreenSize *sizes;
#endif
Feb 16, 2006
Feb 16, 2006
519
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 26, 2001
Apr 26, 2001
520
521
int vm_major, vm_minor;
int nmodes;
Mar 5, 2002
Mar 5, 2002
522
SDL_NAME(XF86VidModeModeInfo) **modes;
Nov 22, 2001
Nov 22, 2001
523
#endif
Feb 16, 2006
Feb 16, 2006
524
#if SDL_VIDEO_DRIVER_X11_XME
Nov 22, 2001
Nov 22, 2001
525
526
527
int xme_major, xme_minor;
int ractive, nummodes;
XiGMiscResolutionInfo *modelist;
Apr 26, 2001
Apr 26, 2001
528
#endif
Nov 4, 2001
Nov 4, 2001
529
530
531
int i, n;
int screen_w;
int screen_h;
Apr 26, 2001
Apr 26, 2001
532
May 4, 2006
May 4, 2006
533
use_xinerama = 0;
Mar 22, 2006
Mar 22, 2006
534
use_xrandr = 0;
May 4, 2006
May 4, 2006
535
536
use_vidmode = 0;
use_xme = 0;
Nov 4, 2001
Nov 4, 2001
537
538
539
screen_w = DisplayWidth(SDL_Display, SDL_Screen);
screen_h = DisplayHeight(SDL_Display, SDL_Screen);
May 4, 2006
May 4, 2006
540
541
542
543
#if SDL_VIDEO_DRIVER_X11_XINERAMA
/* Query Xinerama extention */
if ( CheckXinerama(this, &xinerama_major, &xinerama_minor) ) {
/* Find out which screen is the desired one */
Sep 21, 2009
Sep 21, 2009
544
int desired = -1;
May 4, 2006
May 4, 2006
545
546
547
548
int screens;
int w, h;
SDL_NAME(XineramaScreenInfo) *xinerama;
Oct 10, 2009
Oct 10, 2009
549
550
551
552
const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_DISPLAY");
if ( !variable ) {
variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
}
May 4, 2006
May 4, 2006
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
if ( variable ) {
desired = SDL_atoi(variable);
}
#ifdef X11MODES_DEBUG
printf("X11 detected Xinerama:\n");
#endif
xinerama = SDL_NAME(XineramaQueryScreens)(SDL_Display, &screens);
for ( i = 0; i < screens; i++ ) {
#ifdef X11MODES_DEBUG
printf("xinerama %d: %dx%d+%d+%d\n",
xinerama[i].screen_number,
xinerama[i].width, xinerama[i].height,
xinerama[i].x_org, xinerama[i].y_org);
#endif
if ( xinerama[i].screen_number == desired ) {
use_xinerama = 1;
xinerama_info = xinerama[i];
}
}
XFree(xinerama);
if ( use_xinerama ) {
SDL_modelist = (SDL_Rect **)SDL_malloc(3*sizeof(SDL_Rect *));
if ( !SDL_modelist ) {
SDL_OutOfMemory();
return -1;
}
/* Add the full xinerama mode */
n = 0;
w = xinerama_info.width;
h = xinerama_info.height;
if ( screen_w > w || screen_h > h) {
SDL_modelist[n] = (SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
if ( SDL_modelist[n] ) {
SDL_modelist[n]->x = 0;
SDL_modelist[n]->y = 0;
SDL_modelist[n]->w = screen_w;
SDL_modelist[n]->h = screen_h;
++n;
}
}
/* Add the head xinerama mode */
SDL_modelist[n] = (SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
if ( SDL_modelist[n] ) {
SDL_modelist[n]->x = 0;
SDL_modelist[n]->y = 0;
SDL_modelist[n]->w = w;
SDL_modelist[n]->h = h;
++n;
}
SDL_modelist[n] = NULL;
}
}
#endif /* SDL_VIDEO_DRIVER_X11_XINERAMA */
Mar 22, 2006
Mar 22, 2006
610
#if SDL_VIDEO_DRIVER_X11_XRANDR
Apr 29, 2006
Apr 29, 2006
611
/* XRandR */
Mar 22, 2006
Mar 22, 2006
612
/* require at least XRandR v1.0 (arbitrary) */
Apr 29, 2006
Apr 29, 2006
613
614
if ( CheckXRandR(this, &xrandr_major, &xrandr_minor) && (xrandr_major >= 1) )
{
May 4, 2006
May 4, 2006
615
#ifdef X11MODES_DEBUG
Mar 22, 2006
Mar 22, 2006
616
617
618
619
620
621
622
623
624
625
626
627
fprintf(stderr, "XRANDR: XRRQueryVersion: V%d.%d\n",
xrandr_major, xrandr_minor);
#endif
/* save the screen configuration since we must reference it
each time we toggle modes.
*/
screen_config = XRRGetScreenInfo(SDL_Display, SDL_Root);
/* retrieve the list of resolution */
sizes = XRRConfigSizes(screen_config, &nsizes);
if (nsizes > 0) {
May 4, 2006
May 4, 2006
628
629
630
631
632
633
if ( SDL_modelist ) {
for ( i = 0; SDL_modelist[i]; ++i ) {
SDL_free(SDL_modelist[i]);
}
SDL_free(SDL_modelist);
}
Mar 22, 2006
Mar 22, 2006
634
SDL_modelist = (SDL_Rect **)malloc((nsizes+1)*sizeof(SDL_Rect *));
May 4, 2006
May 4, 2006
635
636
637
638
639
640
641
642
643
644
645
if ( !SDL_modelist ) {
SDL_OutOfMemory();
return -1;
}
for ( i=0; i < nsizes; i++ ) {
if ((SDL_modelist[i] =
(SDL_Rect *)malloc(sizeof(SDL_Rect))) == NULL)
break;
#ifdef X11MODES_DEBUG
fprintf(stderr, "XRANDR: mode = %4d, w = %4d, h = %4d\n",
i, sizes[i].width, sizes[i].height);
Mar 22, 2006
Mar 22, 2006
646
647
#endif
May 4, 2006
May 4, 2006
648
649
650
651
SDL_modelist[i]->x = 0;
SDL_modelist[i]->y = 0;
SDL_modelist[i]->w = sizes[i].width;
SDL_modelist[i]->h = sizes[i].height;
Mar 22, 2006
Mar 22, 2006
652
653
}
May 4, 2006
May 4, 2006
654
/* sort the mode list descending as SDL expects */
May 7, 2006
May 7, 2006
655
SDL_qsort(SDL_modelist, nsizes, sizeof *SDL_modelist, cmpmodelist);
May 4, 2006
May 4, 2006
656
657
SDL_modelist[i] = NULL; /* terminator */
Mar 22, 2006
Mar 22, 2006
658
659
660
661
662
663
use_xrandr = xrandr_major * 100 + xrandr_minor;
saved_size_id = XRRConfigCurrentConfiguration(screen_config, &saved_rotation);
}
}
#endif /* SDL_VIDEO_DRIVER_X11_XRANDR */
Feb 16, 2006
Feb 16, 2006
664
#if SDL_VIDEO_DRIVER_X11_VIDMODE
Apr 29, 2006
Apr 29, 2006
665
/* XVidMode */
May 4, 2006
May 4, 2006
666
if ( !use_xrandr &&
Jun 20, 2006
Jun 20, 2006
667
#if SDL_VIDEO_DRIVER_X11_XINERAMA
Sep 21, 2009
Sep 21, 2009
668
(!use_xinerama || xinerama_info.screen_number == -1) &&
Jun 20, 2006
Jun 20, 2006
669
#endif
May 4, 2006
May 4, 2006
670
CheckVidMode(this, &vm_major, &vm_minor) &&
Apr 29, 2006
Apr 29, 2006
671
672
SDL_NAME(XF86VidModeGetAllModeLines)(SDL_Display, SDL_Screen,&nmodes,&modes) )
{
May 4, 2006
May 4, 2006
673
#ifdef X11MODES_DEBUG
May 5, 2006
May 5, 2006
674
printf("VidMode modes: (unsorted)\n");
Jun 28, 2003
Jun 28, 2003
675
676
677
for ( i = 0; i < nmodes; ++i ) {
printf("Mode %d: %d x %d @ %d\n", i,
modes[i]->hdisplay, modes[i]->vdisplay,
May 4, 2006
May 4, 2006
678
(modes[i]->htotal && modes[i]->vtotal) ? (1000 * modes[i]->dotclock / (modes[i]->htotal * modes[i]->vtotal)) : 0 );
Jun 28, 2003
Jun 28, 2003
679
680
}
#endif
Apr 26, 2001
Apr 26, 2001
681
if ( SDL_modelist ) {
May 4, 2006
May 4, 2006
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
for ( i = 0; SDL_modelist[i]; ++i ) {
SDL_free(SDL_modelist[i]);
}
SDL_free(SDL_modelist);
}
SDL_modelist = (SDL_Rect **)SDL_malloc((nmodes+2)*sizeof(SDL_Rect *));
if ( !SDL_modelist ) {
SDL_OutOfMemory();
return -1;
}
SDL_qsort(modes, nmodes, sizeof *modes, cmpmodes);
n = 0;
for ( i=0; i<nmodes; ++i ) {
int w, h;
/* Eliminate duplicate modes with different refresh rates */
if ( i > 0 &&
modes[i]->hdisplay == modes[i-1]->hdisplay &&
modes[i]->vdisplay == modes[i-1]->vdisplay ) {
continue;
}
Nov 4, 2001
Nov 4, 2001
703
May 4, 2006
May 4, 2006
704
705
706
707
708
709
710
711
712
713
714
715
/* Check to see if we should add the screen size (Xinerama) */
w = modes[i]->hdisplay;
h = modes[i]->vdisplay;
if ( (screen_w * screen_h) >= (w * h) ) {
if ( (screen_w != w) || (screen_h != h) ) {
SDL_modelist[n] = (SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
if ( SDL_modelist[n] ) {
SDL_modelist[n]->x = 0;
SDL_modelist[n]->y = 0;
SDL_modelist[n]->w = screen_w;
SDL_modelist[n]->h = screen_h;
++n;
Nov 4, 2001
Nov 4, 2001
716
717
}
}
May 4, 2006
May 4, 2006
718
719
720
screen_w = 0;
screen_h = 0;
}
Nov 4, 2001
Nov 4, 2001
721
May 4, 2006
May 4, 2006
722
723
724
725
/* Add the size from the video mode list */
SDL_modelist[n] = (SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
if ( SDL_modelist[n] == NULL ) {
break;
Apr 26, 2001
Apr 26, 2001
726
}
May 4, 2006
May 4, 2006
727
728
729
730
731
SDL_modelist[n]->x = 0;
SDL_modelist[n]->y = 0;
SDL_modelist[n]->w = w;
SDL_modelist[n]->h = h;
++n;
Apr 26, 2001
Apr 26, 2001
732
}
May 4, 2006
May 4, 2006
733
SDL_modelist[n] = NULL;
Mar 22, 2006
Mar 22, 2006
734
XFree(modes);
Apr 26, 2001
Apr 26, 2001
735
Jul 11, 2001
Jul 11, 2001
736
use_vidmode = vm_major * 100 + vm_minor;
Apr 26, 2001
Apr 26, 2001
737
738
save_mode(this);
}
Feb 16, 2006
Feb 16, 2006
739
#endif /* SDL_VIDEO_DRIVER_X11_VIDMODE */
Apr 26, 2001
Apr 26, 2001
740
Feb 16, 2006
Feb 16, 2006
741
#if SDL_VIDEO_DRIVER_X11_XME
Apr 29, 2006
Apr 29, 2006
742
/* XiG */
Nov 22, 2001
Nov 22, 2001
743
modelist = NULL;
Apr 29, 2006
Apr 29, 2006
744
745
746
747
748
/* first lets make sure we have the extension, and it's at least v2.0 */
if ( CheckXME(this, &xme_major, &xme_minor) && xme_major >= 2 &&
(nummodes = XiGMiscQueryResolutions(SDL_Display, SDL_Screen,
0, /* view */
&ractive, &modelist)) > 1 )
Sep 30, 2002
Sep 30, 2002
749
750
{ /* then we actually have some */
int j;
Nov 22, 2001
Nov 22, 2001
751
May 4, 2006
May 4, 2006
752
753
754
/* We get the list already sorted in descending order.
We'll copy it in reverse order so SDL is happy */
#ifdef X11MODES_DEBUG
Sep 30, 2002
Sep 30, 2002
755
756
fprintf(stderr, "XME: nummodes = %d, active mode = %d\n",
nummodes, ractive);
Nov 22, 2001
Nov 22, 2001
757
#endif
May 4, 2006
May 4, 2006
758
759
760
761
762
763
if ( SDL_modelist ) {
for ( i = 0; SDL_modelist[i]; ++i ) {
SDL_free(SDL_modelist[i]);
}
SDL_free(SDL_modelist);
}
Feb 7, 2006
Feb 7, 2006
764
SDL_modelist = (SDL_Rect **)SDL_malloc((nummodes+1)*sizeof(SDL_Rect *));
May 4, 2006
May 4, 2006
765
766
767
768
769
770
771
772
773
774
775
if ( !SDL_modelist ) {
SDL_OutOfMemory();
return -1;
}
for ( i=0, j=nummodes-1; j>=0; i++, j-- ) {
if ((SDL_modelist[i] =
(SDL_Rect *)SDL_malloc(sizeof(SDL_Rect))) == NULL)
break;
#ifdef X11MODES_DEBUG
fprintf(stderr, "XME: mode = %4d, w = %4d, h = %4d\n",
i, modelist[i].width, modelist[i].height);
Nov 22, 2001
Nov 22, 2001
776
#endif
May 4, 2006
May 4, 2006
777
778
779
780
781
782
SDL_modelist[i]->x = 0;
SDL_modelist[i]->y = 0;
SDL_modelist[i]->w = modelist[j].width;
SDL_modelist[i]->h = modelist[j].height;
Sep 30, 2002
Sep 30, 2002
783
}
May 4, 2006
May 4, 2006
784
785
786
SDL_modelist[i] = NULL; /* terminator */
use_xme = xme_major * 100 + xme_minor;
Sep 30, 2002
Sep 30, 2002
787
saved_res = modelist[ractive]; /* save the current resolution */
Nov 22, 2001
Nov 22, 2001
788
789
}
if ( modelist ) {
Mar 22, 2006
Mar 22, 2006
790
XFree(modelist);
Nov 22, 2001
Nov 22, 2001
791
}
Feb 16, 2006
Feb 16, 2006
792
#endif /* SDL_VIDEO_DRIVER_X11_XME */
Nov 22, 2001
Nov 22, 2001
793
Apr 26, 2001
Apr 26, 2001
794
{
Apr 17, 2006
Apr 17, 2006
795
796
/* It's interesting to note that if we allow 32 bit depths,
we get a visual with an alpha mask on composite servers.
Sep 30, 2002
Sep 30, 2002
797
static int depth_list[] = { 32, 24, 16, 15, 8 };
Apr 17, 2006
Apr 17, 2006
798
799
*/
static int depth_list[] = { 24, 16, 15, 8 };
Sep 30, 2002
Sep 30, 2002
800
801
802
803
804
805
int j, np;
int use_directcolor = 1;
XPixmapFormatValues *pf;
/* Search for the visuals in deepest-first order, so that the first
will be the richest one */
Feb 7, 2006
Feb 7, 2006
806
if ( SDL_getenv("SDL_VIDEO_X11_NODIRECTCOLOR") ) {
Sep 30, 2002
Sep 30, 2002
807
808
809
use_directcolor = 0;
}
this->hidden->nvisuals = 0;
Feb 7, 2006
Feb 7, 2006
810
if ( ! add_visual_byid(this, SDL_getenv("SDL_VIDEO_X11_VISUALID")) ) {
Feb 19, 2006
Feb 19, 2006
811
for ( i=0; i<SDL_arraysize(depth_list); ++i ) {
Sep 30, 2002
Sep 30, 2002
812
813
814
815
816
817
818
819
820
821
if ( depth_list[i] > 8 ) {
if ( use_directcolor ) {
add_visual(this, depth_list[i], DirectColor);
}
add_visual(this, depth_list[i], TrueColor);
} else {
add_visual(this, depth_list[i], PseudoColor);
add_visual(this, depth_list[i], StaticColor);
}
}
Sep 27, 2009
Sep 27, 2009
822
add_default_visual(this);
Sep 30, 2002
Sep 30, 2002
823
824
825
826
827
828
829
}
if ( this->hidden->nvisuals == 0 ) {
SDL_SetError("Found no sufficiently capable X11 visuals");
return -1;
}
/* look up the pixel quantum for each depth */
Mar 22, 2006
Mar 22, 2006
830
pf = XListPixmapFormats(SDL_Display, &np);
Sep 30, 2002
Sep 30, 2002
831
832
833
834
835
836
837
838
for(i = 0; i < this->hidden->nvisuals; i++) {
int d = this->hidden->visuals[i].depth;
for(j = 0; j < np; j++)
if(pf[j].depth == d)
break;
this->hidden->visuals[i].bpp = j < np ? pf[j].bits_per_pixel : d;
}
Mar 22, 2006
Mar 22, 2006
839
XFree(pf);
Apr 26, 2001
Apr 26, 2001
840
841
842
}
if ( SDL_modelist == NULL ) {
Feb 7, 2006
Feb 7, 2006
843
SDL_modelist = (SDL_Rect **)SDL_malloc((1+1)*sizeof(SDL_Rect *));
May 4, 2006
May 4, 2006
844
845
846
if ( !SDL_modelist ) {
SDL_OutOfMemory();
return -1;
Apr 26, 2001
Apr 26, 2001
847
}
May 4, 2006
May 4, 2006
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
n = 0;
SDL_modelist[n] = (SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
if ( SDL_modelist[n] ) {
SDL_modelist[n]->x = 0;
SDL_modelist[n]->y = 0;
SDL_modelist[n]->w = screen_w;
SDL_modelist[n]->h = screen_h;
++n;
}
SDL_modelist[n] = NULL;
}
#ifdef X11MODES_DEBUG
if ( use_xinerama ) {
printf("Xinerama is enabled\n");
Apr 26, 2001
Apr 26, 2001
863
864
}
Apr 29, 2006
Apr 29, 2006
865
866
867
868
if ( use_xrandr ) {
printf("XRandR is enabled\n");
}
Apr 26, 2001
Apr 26, 2001
869
if ( use_vidmode ) {
May 5, 2006
May 5, 2006
870
printf("VidMode is enabled\n");
Apr 26, 2001
Apr 26, 2001
871
}
Nov 22, 2001
Nov 22, 2001
872
May 4, 2006
May 4, 2006
873
if ( use_xme ) {
May 4, 2006
May 4, 2006
874
printf("Xi Graphics XME fullscreen is enabled\n");
May 4, 2006
May 4, 2006
875
}
Nov 22, 2001
Nov 22, 2001
876
Apr 26, 2001
Apr 26, 2001
877
if ( SDL_modelist ) {
Nov 3, 2001
Nov 3, 2001
878
printf("X11 video mode list:\n");
Apr 26, 2001
Apr 26, 2001
879
for ( i=0; SDL_modelist[i]; ++i ) {
Nov 3, 2001
Nov 3, 2001
880
printf("\t%dx%d\n", SDL_modelist[i]->w, SDL_modelist[i]->h);
Apr 26, 2001
Apr 26, 2001
881
882
}
}
May 4, 2006
May 4, 2006
883
#endif /* X11MODES_DEBUG */
Nov 3, 2001
Nov 3, 2001
884
Apr 26, 2001
Apr 26, 2001
885
886
887
888
889
890
891
return 0;
}
int X11_SupportedVisual(_THIS, SDL_PixelFormat *format)
{
int i;
for(i = 0; i < this->hidden->nvisuals; i++)
Sep 30, 2002
Sep 30, 2002
892
893
if(this->hidden->visuals[i].bpp == format->BitsPerPixel)
return 1;
Apr 26, 2001
Apr 26, 2001
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
return 0;
}
SDL_Rect **X11_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags)
{
if ( X11_SupportedVisual(this, format) ) {
if ( flags & SDL_FULLSCREEN ) {
return(SDL_modelist);
} else {
return((SDL_Rect **)-1);
}
} else {
return((SDL_Rect **)0);
}
}
void X11_FreeVideoModes(_THIS)
{
int i;
if ( SDL_modelist ) {
for ( i=0; SDL_modelist[i]; ++i ) {
Feb 7, 2006
Feb 7, 2006
916
SDL_free(SDL_modelist[i]);
Apr 26, 2001
Apr 26, 2001
917
}
Feb 7, 2006
Feb 7, 2006
918
SDL_free(SDL_modelist);
Apr 26, 2001
Apr 26, 2001
919
920
SDL_modelist = NULL;
}
Mar 22, 2006
Mar 22, 2006
921
922
923
924
925
926
927
928
#if SDL_VIDEO_DRIVER_X11_XRANDR
/* Free the Xrandr screen configuration */
if ( screen_config ) {
XRRFreeScreenConfigInfo(screen_config);
screen_config = NULL;
}
#endif /* SDL_VIDEO_DRIVER_X11_XRANDR */
Apr 26, 2001
Apr 26, 2001
929
930
931
932
}
int X11_ResizeFullScreen(_THIS)
{
May 4, 2006
May 4, 2006
933
int x = 0, y = 0;
Apr 26, 2001
Apr 26, 2001
934
int real_w, real_h;
Nov 4, 2001
Nov 4, 2001
935
936
937
938
939
int screen_w;
int screen_h;
screen_w = DisplayWidth(SDL_Display, SDL_Screen);
screen_h = DisplayHeight(SDL_Display, SDL_Screen);
Apr 26, 2001
Apr 26, 2001
940
Jun 20, 2006
Jun 20, 2006
941
#if SDL_VIDEO_DRIVER_X11_XINERAMA
May 4, 2006
May 4, 2006
942
943
944
945
946
947
if ( use_xinerama &&
window_w <= xinerama_info.width &&
window_h <= xinerama_info.height ) {
x = xinerama_info.x_org;
y = xinerama_info.y_org;
}
Jun 20, 2006
Jun 20, 2006
948
949
#endif /* SDL_VIDEO_DRIVER_X11_XINERAMA */
Apr 26, 2001
Apr 26, 2001
950
951
if ( currently_fullscreen ) {
/* Switch resolution and cover it with the FSwindow */
Nov 3, 2001
Nov 3, 2001
952
move_cursor_to(this, x, y);
Mar 15, 2006
Mar 15, 2006
953
set_best_resolution(this, window_w, window_h);
Nov 3, 2001
Nov 3, 2001
954
move_cursor_to(this, x, y);
Apr 26, 2001
Apr 26, 2001
955
get_real_resolution(this, &real_w, &real_h);
Mar 15, 2006
Mar 15, 2006
956
if ( window_w > real_w ) {
Nov 4, 2001
Nov 4, 2001
957
958
real_w = MAX(real_w, screen_w);
}
Mar 15, 2006
Mar 15, 2006
959
if ( window_h > real_h ) {
Nov 4, 2001
Nov 4, 2001
960
961
real_h = MAX(real_h, screen_h);
}
Mar 22, 2006
Mar 22, 2006
962
XMoveResizeWindow(SDL_Display, FSwindow, x, y, real_w, real_h);
Apr 26, 2001
Apr 26, 2001
963
964
965
move_cursor_to(this, real_w/2, real_h/2);
/* Center and reparent the drawing window */
Mar 15, 2006
Mar 15, 2006
966
967
x = (real_w - window_w)/2;
y = (real_h - window_h)/2;
Mar 22, 2006
Mar 22, 2006
968
XReparentWindow(SDL_Display, SDL_Window, FSwindow, x, y);
Apr 26, 2001
Apr 26, 2001
969
/* FIXME: move the mouse to the old relative location */
Mar 22, 2006
Mar 22, 2006
970
XSync(SDL_Display, True); /* Flush spurious mode change events */
Apr 26, 2001
Apr 26, 2001
971
972
973
974
975
976
977
978
979
}
return(1);
}
void X11_QueueEnterFullScreen(_THIS)
{
switch_waiting = 0x01 | SDL_FULLSCREEN;
switch_time = SDL_GetTicks() + 1500;
#if 0 /* This causes a BadMatch error if the window is iconified (not needed) */
Mar 22, 2006
Mar 22, 2006
980
XSetInputFocus(SDL_Display, WMwindow, RevertToNone, CurrentTime);
Apr 26, 2001
Apr 26, 2001
981
982
983
984
985
986
987
988
989
990
#endif
}
int X11_EnterFullScreen(_THIS)
{
int okay;
#if 0
Window tmpwin, *windows;
int i, nwindows;
#endif
May 4, 2006
May 4, 2006
991
int x = 0, y = 0;
Jul 9, 2001
Jul 9, 2001
992
int real_w, real_h;
Nov 4, 2001
Nov 4, 2001
993
994
int screen_w;
int screen_h;
Apr 26, 2001
Apr 26, 2001
995
996
okay = 1;
Jul 9, 2001
Jul 9, 2001
997
998
999
if ( currently_fullscreen ) {
return(okay);
}
Apr 26, 2001
Apr 26, 2001
1000