Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
2057 lines (1833 loc) · 50.4 KB

SDL_video.c

File metadata and controls

2057 lines (1833 loc) · 50.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 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
/* The high-level video driver subsystem */
Jan 4, 2009
Jan 4, 2009
26
#include "SDL.h"
Jan 4, 2009
Jan 4, 2009
27
#include "SDL_video.h"
Apr 26, 2001
Apr 26, 2001
28
29
30
#include "SDL_sysvideo.h"
#include "SDL_blit.h"
#include "SDL_pixels_c.h"
Feb 16, 2006
Feb 16, 2006
31
#include "../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
32
Sep 2, 2008
Sep 2, 2008
33
34
#if SDL_VIDEO_OPENGL_ES
#include "SDL_opengles.h"
Sep 15, 2008
Sep 15, 2008
35
#endif /* SDL_VIDEO_OPENGL_ES */
Sep 2, 2008
Sep 2, 2008
36
Jul 22, 2006
Jul 22, 2006
37
38
#if SDL_VIDEO_OPENGL
#include "SDL_opengl.h"
Sep 27, 2010
Sep 27, 2010
39
40
41
#endif /* SDL_VIDEO_OPENGL */
#include "SDL_syswm.h"
Jul 22, 2006
Jul 22, 2006
42
43
44
45
46
47
/* On Windows, windows.h defines CreateWindow */
#ifdef CreateWindow
#undef CreateWindow
#endif
Apr 26, 2001
Apr 26, 2001
48
/* Available video drivers */
Jun 5, 2009
Jun 5, 2009
49
static VideoBootStrap *bootstrap[] = {
Jul 23, 2006
Jul 23, 2006
50
#if SDL_VIDEO_DRIVER_COCOA
Sep 15, 2008
Sep 15, 2008
51
&COCOA_bootstrap,
Sep 8, 2005
Sep 8, 2005
52
#endif
Feb 16, 2006
Feb 16, 2006
53
#if SDL_VIDEO_DRIVER_X11
Sep 15, 2008
Sep 15, 2008
54
&X11_bootstrap,
Apr 26, 2001
Apr 26, 2001
55
#endif
Feb 16, 2006
Feb 16, 2006
56
#if SDL_VIDEO_DRIVER_DIRECTFB
Sep 15, 2008
Sep 15, 2008
57
&DirectFB_bootstrap,
Sep 4, 2001
Sep 4, 2001
58
#endif
Jan 21, 2011
Jan 21, 2011
59
60
#if SDL_VIDEO_DRIVER_WINDOWS
&WINDOWS_bootstrap,
Jan 1, 2006
Jan 1, 2006
61
#endif
Feb 16, 2006
Feb 16, 2006
62
#if SDL_VIDEO_DRIVER_BWINDOW
Sep 15, 2008
Sep 15, 2008
63
&BWINDOW_bootstrap,
Apr 26, 2001
Apr 26, 2001
64
#endif
Feb 2, 2011
Feb 2, 2011
65
66
#if SDL_VIDEO_DRIVER_PANDORA
&PND_bootstrap,
Sep 11, 2001
Sep 11, 2001
67
#endif
Sep 2, 2008
Sep 2, 2008
68
#if SDL_VIDEO_DRIVER_NDS
Sep 15, 2008
Sep 15, 2008
69
&NDS_bootstrap,
Aug 27, 2008
Aug 27, 2008
70
#endif
Sep 2, 2008
Sep 2, 2008
71
#if SDL_VIDEO_DRIVER_UIKIT
Sep 15, 2008
Sep 15, 2008
72
&UIKIT_bootstrap,
Sep 2, 2008
Sep 2, 2008
73
#endif
Jun 10, 2010
Jun 10, 2010
74
75
#if SDL_VIDEO_DRIVER_ANDROID
&Android_bootstrap,
Feb 2, 2011
Feb 2, 2011
76
77
78
#endif
#if SDL_VIDEO_DRIVER_DUMMY
&DUMMY_bootstrap,
Apr 26, 2001
Apr 26, 2001
79
#endif
Sep 15, 2008
Sep 15, 2008
80
NULL
Apr 26, 2001
Apr 26, 2001
81
};
Sep 11, 2001
Sep 11, 2001
82
Jul 10, 2006
Jul 10, 2006
83
static SDL_VideoDevice *_this = NULL;
Apr 26, 2001
Apr 26, 2001
84
Jan 24, 2010
Jan 24, 2010
85
86
87
88
89
#define CHECK_WINDOW_MAGIC(window, retval) \
if (!_this) { \
SDL_UninitializedVideo(); \
return retval; \
} \
Feb 1, 2010
Feb 1, 2010
90
if (!window || window->magic != &_this->window_magic) { \
Jan 24, 2010
Jan 24, 2010
91
92
93
94
SDL_SetError("Invalid window"); \
return retval; \
}
Apr 26, 2001
Apr 26, 2001
95
/* Various local functions */
Dec 17, 2008
Dec 17, 2008
96
static void SDL_UpdateWindowGrab(SDL_Window * window);
Apr 26, 2001
Apr 26, 2001
97
Jul 10, 2006
Jul 10, 2006
98
99
100
static int
cmpmodes(const void *A, const void *B)
{
Sep 15, 2008
Sep 15, 2008
101
102
SDL_DisplayMode a = *(const SDL_DisplayMode *) A;
SDL_DisplayMode b = *(const SDL_DisplayMode *) B;
Jul 10, 2006
Jul 10, 2006
103
Sep 15, 2008
Sep 15, 2008
104
105
106
107
108
109
110
111
112
if (a.w != b.w) {
return b.w - a.w;
}
if (a.h != b.h) {
return b.h - a.h;
}
if (SDL_BITSPERPIXEL(a.format) != SDL_BITSPERPIXEL(b.format)) {
return SDL_BITSPERPIXEL(b.format) - SDL_BITSPERPIXEL(a.format);
}
Jun 9, 2009
Jun 9, 2009
113
114
115
if (SDL_PIXELLAYOUT(a.format) != SDL_PIXELLAYOUT(b.format)) {
return SDL_PIXELLAYOUT(b.format) - SDL_PIXELLAYOUT(a.format);
}
Sep 15, 2008
Sep 15, 2008
116
117
118
119
if (a.refresh_rate != b.refresh_rate) {
return b.refresh_rate - a.refresh_rate;
}
return 0;
Jul 10, 2006
Jul 10, 2006
120
}
Apr 26, 2001
Apr 26, 2001
121
Jul 16, 2006
Jul 16, 2006
122
123
124
static void
SDL_UninitializedVideo()
{
Sep 15, 2008
Sep 15, 2008
125
SDL_SetError("Video subsystem has not been initialized");
Jul 16, 2006
Jul 16, 2006
126
127
}
Jul 10, 2006
Jul 10, 2006
128
129
130
int
SDL_GetNumVideoDrivers(void)
{
Sep 15, 2008
Sep 15, 2008
131
return SDL_arraysize(bootstrap) - 1;
Jul 10, 2006
Jul 10, 2006
132
133
}
Sep 15, 2008
Sep 15, 2008
134
const char *
Jul 10, 2006
Jul 10, 2006
135
136
SDL_GetVideoDriver(int index)
{
Sep 15, 2008
Sep 15, 2008
137
138
139
140
if (index >= 0 && index < SDL_GetNumVideoDrivers()) {
return bootstrap[index]->name;
}
return NULL;
Jul 10, 2006
Jul 10, 2006
141
}
Apr 26, 2001
Apr 26, 2001
142
143
144
145
/*
* Initialize the video and event subsystems -- determine native pixel format
*/
Jul 10, 2006
Jul 10, 2006
146
int
Jan 28, 2011
Jan 28, 2011
147
SDL_VideoInit(const char *driver_name)
Apr 26, 2001
Apr 26, 2001
148
{
Sep 15, 2008
Sep 15, 2008
149
150
151
SDL_VideoDevice *video;
int index;
int i;
Apr 26, 2001
Apr 26, 2001
152
Jan 24, 2010
Jan 24, 2010
153
154
155
156
157
/* Check to make sure we don't overwrite '_this' */
if (_this != NULL) {
SDL_VideoQuit();
}
Sep 15, 2008
Sep 15, 2008
158
/* Start the event loop */
Jan 28, 2011
Jan 28, 2011
159
160
161
162
163
if (SDL_StartEventLoop() < 0 ||
SDL_KeyboardInit() < 0 ||
SDL_MouseInit() < 0 ||
SDL_TouchInit() < 0 ||
SDL_QuitInit() < 0) {
Sep 15, 2008
Sep 15, 2008
164
165
return -1;
}
Jan 24, 2010
Jan 24, 2010
166
Sep 15, 2008
Sep 15, 2008
167
168
169
170
171
172
173
174
175
/* Select the proper video driver */
index = 0;
video = NULL;
if (driver_name == NULL) {
driver_name = SDL_getenv("SDL_VIDEODRIVER");
}
if (driver_name != NULL) {
for (i = 0; bootstrap[i]; ++i) {
if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
Nov 18, 2009
Nov 18, 2009
176
video = bootstrap[i]->create(index);
Sep 15, 2008
Sep 15, 2008
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
break;
}
}
} else {
for (i = 0; bootstrap[i]; ++i) {
if (bootstrap[i]->available()) {
video = bootstrap[i]->create(index);
if (video != NULL) {
break;
}
}
}
}
if (video == NULL) {
if (driver_name) {
SDL_SetError("%s not available", driver_name);
} else {
SDL_SetError("No available video device");
}
return -1;
}
_this = video;
_this->name = bootstrap[i]->name;
_this->next_object_id = 1;
/* Set some very sane GL defaults */
_this->gl_config.driver_loaded = 0;
_this->gl_config.dll_handle = NULL;
_this->gl_config.red_size = 3;
_this->gl_config.green_size = 3;
_this->gl_config.blue_size = 2;
_this->gl_config.alpha_size = 0;
_this->gl_config.buffer_size = 0;
_this->gl_config.depth_size = 16;
_this->gl_config.stencil_size = 0;
_this->gl_config.double_buffer = 1;
_this->gl_config.accum_red_size = 0;
_this->gl_config.accum_green_size = 0;
_this->gl_config.accum_blue_size = 0;
_this->gl_config.accum_alpha_size = 0;
_this->gl_config.stereo = 0;
_this->gl_config.multisamplebuffers = 0;
_this->gl_config.multisamplesamples = 0;
_this->gl_config.retained_backing = 1;
Dec 15, 2009
Dec 15, 2009
222
_this->gl_config.accelerated = -1; /* accelerated or not, both are fine */
Mar 24, 2009
Mar 24, 2009
223
224
_this->gl_config.major_version = 2;
_this->gl_config.minor_version = 1;
Sep 15, 2008
Sep 15, 2008
225
226
227
228
229
230
231
232
233
234
235
236
/* Initialize the video subsystem */
if (_this->VideoInit(_this) < 0) {
SDL_VideoQuit();
return -1;
}
/* Make sure some displays were added */
if (_this->num_displays == 0) {
SDL_SetError("The video driver did not add any displays");
SDL_VideoQuit();
return (-1);
}
Jul 10, 2006
Jul 10, 2006
237
Sep 15, 2008
Sep 15, 2008
238
239
/* We're ready to go! */
return 0;
Jul 10, 2006
Jul 10, 2006
240
}
Apr 26, 2001
Apr 26, 2001
241
Sep 15, 2008
Sep 15, 2008
242
const char *
Jul 10, 2006
Jul 10, 2006
243
244
SDL_GetCurrentVideoDriver()
{
Sep 15, 2008
Sep 15, 2008
245
246
247
248
249
if (!_this) {
SDL_UninitializedVideo();
return NULL;
}
return _this->name;
Jul 10, 2006
Jul 10, 2006
250
}
Apr 26, 2001
Apr 26, 2001
251
Jul 10, 2006
Jul 10, 2006
252
SDL_VideoDevice *
Jun 26, 2010
Jun 26, 2010
253
SDL_GetVideoDevice(void)
Jul 10, 2006
Jul 10, 2006
254
{
Sep 15, 2008
Sep 15, 2008
255
return _this;
Apr 26, 2001
Apr 26, 2001
256
257
}
Jul 10, 2006
Jul 10, 2006
258
259
int
SDL_AddBasicVideoDisplay(const SDL_DisplayMode * desktop_mode)
Apr 26, 2001
Apr 26, 2001
260
{
Sep 15, 2008
Sep 15, 2008
261
SDL_VideoDisplay display;
Jul 10, 2006
Jul 10, 2006
262
Sep 15, 2008
Sep 15, 2008
263
264
265
266
267
SDL_zero(display);
if (desktop_mode) {
display.desktop_mode = *desktop_mode;
}
display.current_mode = display.desktop_mode;
Jul 10, 2006
Jul 10, 2006
268
Sep 15, 2008
Sep 15, 2008
269
return SDL_AddVideoDisplay(&display);
Apr 26, 2001
Apr 26, 2001
270
271
}
Jul 10, 2006
Jul 10, 2006
272
273
int
SDL_AddVideoDisplay(const SDL_VideoDisplay * display)
Apr 26, 2001
Apr 26, 2001
274
{
Sep 15, 2008
Sep 15, 2008
275
276
SDL_VideoDisplay *displays;
int index = -1;
Jul 10, 2006
Jul 10, 2006
277
Sep 15, 2008
Sep 15, 2008
278
279
280
281
282
283
284
285
286
287
288
289
displays =
SDL_realloc(_this->displays,
(_this->num_displays + 1) * sizeof(*displays));
if (displays) {
index = _this->num_displays++;
displays[index] = *display;
displays[index].device = _this;
_this->displays = displays;
} else {
SDL_OutOfMemory();
}
return index;
Jul 10, 2006
Jul 10, 2006
290
}
Apr 26, 2001
Apr 26, 2001
291
Jul 10, 2006
Jul 10, 2006
292
293
294
int
SDL_GetNumVideoDisplays(void)
{
Sep 15, 2008
Sep 15, 2008
295
296
297
298
299
if (!_this) {
SDL_UninitializedVideo();
return 0;
}
return _this->num_displays;
Apr 26, 2001
Apr 26, 2001
300
301
}
Dec 6, 2009
Dec 6, 2009
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
int
SDL_GetDisplayBounds(int index, SDL_Rect * rect)
{
if (!_this) {
SDL_UninitializedVideo();
return -1;
}
if (index < 0 || index >= _this->num_displays) {
SDL_SetError("index must be in the range 0 - %d",
_this->num_displays - 1);
return -1;
}
if (rect) {
SDL_VideoDisplay *display = &_this->displays[index];
if (_this->GetDisplayBounds) {
if (_this->GetDisplayBounds(_this, display, rect) < 0) {
return -1;
}
} else {
/* Assume that the displays are left to right */
if (index == 0) {
rect->x = 0;
rect->y = 0;
} else {
SDL_GetDisplayBounds(index-1, rect);
rect->x += rect->w;
}
rect->w = display->desktop_mode.w;
rect->h = display->desktop_mode.h;
}
}
return 0;
}
Jul 10, 2006
Jul 10, 2006
337
338
int
SDL_SelectVideoDisplay(int index)
Apr 26, 2001
Apr 26, 2001
339
{
Sep 15, 2008
Sep 15, 2008
340
341
342
343
344
345
346
347
348
349
350
if (!_this) {
SDL_UninitializedVideo();
return (-1);
}
if (index < 0 || index >= _this->num_displays) {
SDL_SetError("index must be in the range 0 - %d",
_this->num_displays - 1);
return -1;
}
_this->current_display = index;
return 0;
Aug 2, 2006
Aug 2, 2006
351
352
353
354
355
}
int
SDL_GetCurrentVideoDisplay(void)
{
Sep 15, 2008
Sep 15, 2008
356
357
358
359
360
if (!_this) {
SDL_UninitializedVideo();
return (-1);
}
return _this->current_display;
Jul 10, 2006
Jul 10, 2006
361
}
Apr 26, 2001
Apr 26, 2001
362
Jul 10, 2006
Jul 10, 2006
363
SDL_bool
Dec 1, 2009
Dec 1, 2009
364
SDL_AddDisplayMode(SDL_VideoDisplay * display, const SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
365
{
Sep 15, 2008
Sep 15, 2008
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
SDL_DisplayMode *modes;
int i, nmodes;
/* Make sure we don't already have the mode in the list */
modes = display->display_modes;
nmodes = display->num_display_modes;
for (i = nmodes; i--;) {
if (SDL_memcmp(mode, &modes[i], sizeof(*mode)) == 0) {
return SDL_FALSE;
}
}
/* Go ahead and add the new mode */
if (nmodes == display->max_display_modes) {
modes =
SDL_realloc(modes,
(display->max_display_modes + 32) * sizeof(*modes));
if (!modes) {
return SDL_FALSE;
}
display->display_modes = modes;
display->max_display_modes += 32;
}
modes[nmodes] = *mode;
display->num_display_modes++;
Jun 9, 2009
Jun 9, 2009
392
393
/* Re-sort video modes */
SDL_qsort(display->display_modes, display->num_display_modes,
Jun 10, 2009
Jun 10, 2009
394
sizeof(SDL_DisplayMode), cmpmodes);
Jun 9, 2009
Jun 9, 2009
395
Sep 15, 2008
Sep 15, 2008
396
return SDL_TRUE;
Apr 26, 2001
Apr 26, 2001
397
398
}
Dec 1, 2009
Dec 1, 2009
399
400
401
402
403
404
405
406
407
408
409
int
SDL_GetNumDisplayModesForDisplay(SDL_VideoDisplay * display)
{
if (!display->num_display_modes && _this->GetDisplayModes) {
_this->GetDisplayModes(_this, display);
SDL_qsort(display->display_modes, display->num_display_modes,
sizeof(SDL_DisplayMode), cmpmodes);
}
return display->num_display_modes;
}
Jul 10, 2006
Jul 10, 2006
410
411
int
SDL_GetNumDisplayModes()
Apr 26, 2001
Apr 26, 2001
412
{
Sep 15, 2008
Sep 15, 2008
413
if (_this) {
Jan 21, 2010
Jan 21, 2010
414
return SDL_GetNumDisplayModesForDisplay(SDL_CurrentDisplay);
Sep 15, 2008
Sep 15, 2008
415
416
}
return 0;
Jul 10, 2006
Jul 10, 2006
417
}
Apr 26, 2001
Apr 26, 2001
418
Aug 5, 2006
Aug 5, 2006
419
int
Dec 1, 2009
Dec 1, 2009
420
SDL_GetDisplayModeForDisplay(SDL_VideoDisplay * display, int index, SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
421
{
Dec 1, 2009
Dec 1, 2009
422
if (index < 0 || index >= SDL_GetNumDisplayModesForDisplay(display)) {
Sep 15, 2008
Sep 15, 2008
423
SDL_SetError("index must be in the range of 0 - %d",
Dec 1, 2009
Dec 1, 2009
424
SDL_GetNumDisplayModesForDisplay(display) - 1);
Sep 15, 2008
Sep 15, 2008
425
426
427
return -1;
}
if (mode) {
Dec 1, 2009
Dec 1, 2009
428
429
430
431
432
433
434
435
*mode = display->display_modes[index];
}
return 0;
}
int
SDL_GetDisplayMode(int index, SDL_DisplayMode * mode)
{
Jan 21, 2010
Jan 21, 2010
436
return SDL_GetDisplayModeForDisplay(SDL_CurrentDisplay, index, mode);
Dec 1, 2009
Dec 1, 2009
437
438
439
440
441
442
443
}
int
SDL_GetDesktopDisplayModeForDisplay(SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{
if (mode) {
*mode = display->desktop_mode;
Sep 15, 2008
Sep 15, 2008
444
445
}
return 0;
Apr 26, 2001
Apr 26, 2001
446
447
}
Aug 5, 2006
Aug 5, 2006
448
449
int
SDL_GetDesktopDisplayMode(SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
450
{
Sep 15, 2008
Sep 15, 2008
451
452
453
454
if (!_this) {
SDL_UninitializedVideo();
return -1;
}
Jan 21, 2010
Jan 21, 2010
455
return SDL_GetDesktopDisplayModeForDisplay(SDL_CurrentDisplay, mode);
Dec 1, 2009
Dec 1, 2009
456
457
458
459
460
}
int
SDL_GetCurrentDisplayModeForDisplay(SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{
Sep 15, 2008
Sep 15, 2008
461
if (mode) {
Dec 1, 2009
Dec 1, 2009
462
*mode = display->current_mode;
Sep 15, 2008
Sep 15, 2008
463
464
}
return 0;
Jul 10, 2006
Jul 10, 2006
465
}
Apr 26, 2001
Apr 26, 2001
466
Aug 5, 2006
Aug 5, 2006
467
468
int
SDL_GetCurrentDisplayMode(SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
469
{
Sep 15, 2008
Sep 15, 2008
470
471
472
473
if (!_this) {
SDL_UninitializedVideo();
return -1;
}
Jan 21, 2010
Jan 21, 2010
474
return SDL_GetCurrentDisplayModeForDisplay(SDL_CurrentDisplay, mode);
Jul 10, 2006
Jul 10, 2006
475
}
Feb 24, 2004
Feb 24, 2004
476
Jul 10, 2006
Jul 10, 2006
477
SDL_DisplayMode *
Dec 1, 2009
Dec 1, 2009
478
479
480
SDL_GetClosestDisplayModeForDisplay(SDL_VideoDisplay * display,
const SDL_DisplayMode * mode,
SDL_DisplayMode * closest)
Sep 15, 2008
Sep 15, 2008
481
482
483
484
485
486
{
Uint32 target_format;
int target_refresh_rate;
int i;
SDL_DisplayMode *current, *match;
Dec 1, 2009
Dec 1, 2009
487
488
if (!mode || !closest) {
SDL_SetError("Missing desired mode or closest mode parameter");
Sep 15, 2008
Sep 15, 2008
489
490
return NULL;
}
Dec 1, 2009
Dec 1, 2009
491
Sep 15, 2008
Sep 15, 2008
492
493
494
495
/* Default to the desktop format */
if (mode->format) {
target_format = mode->format;
} else {
Dec 1, 2009
Dec 1, 2009
496
target_format = display->desktop_mode.format;
Sep 15, 2008
Sep 15, 2008
497
498
499
500
501
502
}
/* Default to the desktop refresh rate */
if (mode->refresh_rate) {
target_refresh_rate = mode->refresh_rate;
} else {
Dec 1, 2009
Dec 1, 2009
503
target_refresh_rate = display->desktop_mode.refresh_rate;
Sep 15, 2008
Sep 15, 2008
504
505
506
}
match = NULL;
Dec 1, 2009
Dec 1, 2009
507
508
for (i = 0; i < SDL_GetNumDisplayModesForDisplay(display); ++i) {
current = &display->display_modes[i];
Sep 15, 2008
Sep 15, 2008
509
Nov 25, 2008
Nov 25, 2008
510
if (current->w && (current->w < mode->w)) {
Sep 15, 2008
Sep 15, 2008
511
512
513
/* Out of sorted modes large enough here */
break;
}
Nov 25, 2008
Nov 25, 2008
514
515
516
517
518
519
520
521
522
523
if (current->h && (current->h < mode->h)) {
if (current->w && (current->w == mode->w)) {
/* Out of sorted modes large enough here */
break;
}
/* Wider, but not tall enough, due to a different
aspect ratio. This mode must be skipped, but closer
modes may still follow. */
continue;
}
Sep 15, 2008
Sep 15, 2008
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
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
if (!match || current->w < match->w || current->h < match->h) {
match = current;
continue;
}
if (current->format != match->format) {
/* Sorted highest depth to lowest */
if (current->format == target_format ||
(SDL_BITSPERPIXEL(current->format) >=
SDL_BITSPERPIXEL(target_format)
&& SDL_PIXELTYPE(current->format) ==
SDL_PIXELTYPE(target_format))) {
match = current;
}
continue;
}
if (current->refresh_rate != match->refresh_rate) {
/* Sorted highest refresh to lowest */
if (current->refresh_rate >= target_refresh_rate) {
match = current;
}
}
}
if (match) {
if (match->format) {
closest->format = match->format;
} else {
closest->format = mode->format;
}
if (match->w && match->h) {
closest->w = match->w;
closest->h = match->h;
} else {
closest->w = mode->w;
closest->h = mode->h;
}
if (match->refresh_rate) {
closest->refresh_rate = match->refresh_rate;
} else {
closest->refresh_rate = mode->refresh_rate;
}
closest->driverdata = match->driverdata;
/*
* Pick some reasonable defaults if the app and driver don't
* care
*/
if (!closest->format) {
closest->format = SDL_PIXELFORMAT_RGB888;
}
if (!closest->w) {
closest->w = 640;
}
if (!closest->h) {
closest->h = 480;
}
return closest;
}
return NULL;
Jul 10, 2006
Jul 10, 2006
582
}
Feb 24, 2004
Feb 24, 2004
583
Dec 1, 2009
Dec 1, 2009
584
585
586
587
588
589
590
591
SDL_DisplayMode *
SDL_GetClosestDisplayMode(const SDL_DisplayMode * mode,
SDL_DisplayMode * closest)
{
if (!_this) {
SDL_UninitializedVideo();
return NULL;
}
Jan 21, 2010
Jan 21, 2010
592
return SDL_GetClosestDisplayModeForDisplay(SDL_CurrentDisplay, mode, closest);
Dec 1, 2009
Dec 1, 2009
593
594
}
Jul 10, 2006
Jul 10, 2006
595
int
Dec 1, 2009
Dec 1, 2009
596
SDL_SetDisplayModeForDisplay(SDL_VideoDisplay * display, const SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
597
{
Sep 15, 2008
Sep 15, 2008
598
599
600
SDL_DisplayMode display_mode;
SDL_DisplayMode current_mode;
Dec 1, 2009
Dec 1, 2009
601
602
if (mode) {
display_mode = *mode;
Sep 15, 2008
Sep 15, 2008
603
Dec 1, 2009
Dec 1, 2009
604
605
606
607
608
609
610
611
612
613
614
615
616
/* Default to the current mode */
if (!display_mode.format) {
display_mode.format = display->current_mode.format;
}
if (!display_mode.w) {
display_mode.w = display->current_mode.w;
}
if (!display_mode.h) {
display_mode.h = display->current_mode.h;
}
if (!display_mode.refresh_rate) {
display_mode.refresh_rate = display->current_mode.refresh_rate;
}
Dec 1, 2009
Dec 1, 2009
617
Dec 1, 2009
Dec 1, 2009
618
619
620
621
622
623
624
625
/* Get a good video mode, the closest one possible */
if (!SDL_GetClosestDisplayModeForDisplay(display, &display_mode, &display_mode)) {
SDL_SetError("No video mode large enough for %dx%d",
display_mode.w, display_mode.h);
return -1;
}
} else {
display_mode = display->desktop_mode;
Sep 15, 2008
Sep 15, 2008
626
}
Dec 1, 2009
Dec 1, 2009
627
Sep 15, 2008
Sep 15, 2008
628
/* See if there's anything left to do */
Dec 1, 2009
Dec 1, 2009
629
SDL_GetCurrentDisplayModeForDisplay(display, &current_mode);
Sep 15, 2008
Sep 15, 2008
630
631
632
if (SDL_memcmp(&display_mode, &current_mode, sizeof(display_mode)) == 0) {
return 0;
}
Dec 1, 2009
Dec 1, 2009
633
Sep 15, 2008
Sep 15, 2008
634
/* Actually change the display mode */
Jan 12, 2011
Jan 12, 2011
635
636
637
638
if (!_this->SetDisplayMode) {
SDL_SetError("Video driver doesn't support changing display mode");
return -1;
}
Dec 1, 2009
Dec 1, 2009
639
if (_this->SetDisplayMode(_this, display, &display_mode) < 0) {
Sep 15, 2008
Sep 15, 2008
640
641
642
643
return -1;
}
display->current_mode = display_mode;
return 0;
Apr 26, 2001
Apr 26, 2001
644
645
}
Dec 1, 2009
Dec 1, 2009
646
int
Jan 21, 2010
Jan 21, 2010
647
SDL_SetWindowDisplayMode(SDL_Window * window, const SDL_DisplayMode * mode)
Dec 1, 2009
Dec 1, 2009
648
{
Jan 24, 2010
Jan 24, 2010
649
CHECK_WINDOW_MAGIC(window, -1);
Sep 15, 2008
Sep 15, 2008
650
Dec 1, 2009
Dec 1, 2009
651
652
653
654
if (mode) {
window->fullscreen_mode = *mode;
} else {
SDL_zero(window->fullscreen_mode);
Sep 15, 2008
Sep 15, 2008
655
}
Dec 5, 2009
Dec 5, 2009
656
return 0;
Apr 26, 2001
Apr 26, 2001
657
658
}
Aug 5, 2006
Aug 5, 2006
659
int
Jan 21, 2010
Jan 21, 2010
660
SDL_GetWindowDisplayMode(SDL_Window * window, SDL_DisplayMode * mode)
Jul 10, 2006
Jul 10, 2006
661
{
Dec 1, 2009
Dec 1, 2009
662
663
SDL_DisplayMode fullscreen_mode;
Jan 24, 2010
Jan 24, 2010
664
CHECK_WINDOW_MAGIC(window, -1);
Dec 1, 2009
Dec 1, 2009
665
666
667
668
669
670
671
672
673
fullscreen_mode = window->fullscreen_mode;
if (!fullscreen_mode.w) {
fullscreen_mode.w = window->w;
}
if (!fullscreen_mode.h) {
fullscreen_mode.h = window->h;
}
Jan 21, 2010
Jan 21, 2010
674
if (!SDL_GetClosestDisplayModeForDisplay(window->display,
Dec 1, 2009
Dec 1, 2009
675
676
677
678
679
680
&fullscreen_mode,
&fullscreen_mode)) {
SDL_SetError("Couldn't find display mode match");
return -1;
}
Sep 15, 2008
Sep 15, 2008
681
if (mode) {
Dec 1, 2009
Dec 1, 2009
682
*mode = fullscreen_mode;
Sep 15, 2008
Sep 15, 2008
683
684
}
return 0;
Jul 10, 2006
Jul 10, 2006
685
}
Jul 18, 2004
Jul 18, 2004
686
Feb 2, 2011
Feb 2, 2011
687
688
689
690
691
692
693
694
Uint32
SDL_GetWindowPixelFormat(SDL_Window * window)
{
SDL_VideoDisplay *display = window->display;
SDL_DisplayMode *displayMode = &display->current_mode;
return displayMode->format;
}
Dec 1, 2009
Dec 1, 2009
695
696
697
static void
SDL_UpdateFullscreenMode(SDL_Window * window, SDL_bool attempt)
{
Jan 21, 2010
Jan 21, 2010
698
SDL_VideoDisplay *display = window->display;
Dec 1, 2009
Dec 1, 2009
699
700
701
702
703
704
705
706
707
708
709
710
711
712
/* See if we're already processing a window */
if (display->updating_fullscreen) {
return;
}
display->updating_fullscreen = SDL_TRUE;
/* See if we even want to do anything here */
if ((window->flags & SDL_WINDOW_FULLSCREEN) &&
(window->flags & SDL_WINDOW_SHOWN)) {
if (attempt) {
/* We just gained some state, try to gain all states */
if (window->flags & SDL_WINDOW_MINIMIZED) {
Jan 21, 2010
Jan 21, 2010
713
SDL_RestoreWindow(window);
Dec 1, 2009
Dec 1, 2009
714
} else {
Jan 21, 2010
Jan 21, 2010
715
SDL_RaiseWindow(window);
Dec 1, 2009
Dec 1, 2009
716
717
718
}
} else {
/* We just lost some state, try to release all states */
Jan 21, 2010
Jan 21, 2010
719
SDL_MinimizeWindow(window);
Dec 1, 2009
Dec 1, 2009
720
721
722
723
724
}
}
if (FULLSCREEN_VISIBLE(window)) {
/* Hide any other fullscreen windows */
Feb 1, 2010
Feb 1, 2010
725
726
SDL_Window *other;
for (other = display->windows; other; other = other->next) {
Dec 1, 2009
Dec 1, 2009
727
if (other != window && FULLSCREEN_VISIBLE(other)) {
Jan 21, 2010
Jan 21, 2010
728
SDL_MinimizeWindow(other);
Dec 1, 2009
Dec 1, 2009
729
730
731
732
733
734
735
}
}
}
display->updating_fullscreen = SDL_FALSE;
/* See if there are any fullscreen windows */
Feb 1, 2010
Feb 1, 2010
736
for (window = display->windows; window; window = window->next) {
Dec 1, 2009
Dec 1, 2009
737
738
if (FULLSCREEN_VISIBLE(window)) {
SDL_DisplayMode fullscreen_mode;
Jan 21, 2010
Jan 21, 2010
739
if (SDL_GetWindowDisplayMode(window, &fullscreen_mode) == 0) {
Dec 1, 2009
Dec 1, 2009
740
SDL_SetDisplayModeForDisplay(display, &fullscreen_mode);
Dec 3, 2009
Dec 3, 2009
741
display->fullscreen_window = window;
Dec 1, 2009
Dec 1, 2009
742
743
744
745
746
747
748
return;
}
}
}
/* Nope, restore the desktop mode */
SDL_SetDisplayModeForDisplay(display, NULL);
Dec 3, 2009
Dec 3, 2009
749
display->fullscreen_window = NULL;
Dec 1, 2009
Dec 1, 2009
750
751
}
Jan 21, 2010
Jan 21, 2010
752
SDL_Window *
Jul 10, 2006
Jul 10, 2006
753
754
SDL_CreateWindow(const char *title, int x, int y, int w, int h, Uint32 flags)
{
Sep 15, 2008
Sep 15, 2008
755
756
757
const Uint32 allowed_flags = (SDL_WINDOW_FULLSCREEN |
SDL_WINDOW_OPENGL |
SDL_WINDOW_BORDERLESS |
Dec 17, 2008
Dec 17, 2008
758
759
SDL_WINDOW_RESIZABLE |
SDL_WINDOW_INPUT_GRABBED);
Sep 15, 2008
Sep 15, 2008
760
SDL_VideoDisplay *display;
Jan 21, 2010
Jan 21, 2010
761
SDL_Window *window;
Sep 15, 2008
Sep 15, 2008
762
763
if (!_this) {
Oct 28, 2009
Oct 28, 2009
764
/* Initialize the video system if needed */
Jan 28, 2011
Jan 28, 2011
765
if (SDL_VideoInit(NULL) < 0) {
Jan 21, 2010
Jan 21, 2010
766
return NULL;
Oct 28, 2009
Oct 28, 2009
767
}
Sep 15, 2008
Sep 15, 2008
768
}
Feb 9, 2009
Feb 9, 2009
769
770
771
if (flags & SDL_WINDOW_OPENGL) {
if (!_this->GL_CreateContext) {
SDL_SetError("No OpenGL support in video driver");
Jan 21, 2010
Jan 21, 2010
772
return NULL;
Feb 9, 2009
Feb 9, 2009
773
774
}
SDL_GL_LoadLibrary(NULL);
Sep 15, 2008
Sep 15, 2008
775
}
Jan 21, 2010
Jan 21, 2010
776
777
display = SDL_CurrentDisplay;
window = (SDL_Window *)SDL_calloc(1, sizeof(*window));
Jan 24, 2010
Jan 24, 2010
778
window->magic = &_this->window_magic;
Jan 21, 2010
Jan 21, 2010
779
780
781
782
783
784
785
786
window->id = _this->next_object_id++;
window->x = x;
window->y = y;
window->w = w;
window->h = h;
window->flags = (flags & allowed_flags);
window->display = display;
window->next = display->windows;
Jan 22, 2010
Jan 22, 2010
787
788
789
if (display->windows) {
display->windows->prev = window;
}
Jan 21, 2010
Jan 21, 2010
790
display->windows = window;
Sep 15, 2008
Sep 15, 2008
791
Jan 21, 2010
Jan 21, 2010
792
793
794
if (_this->CreateWindow && _this->CreateWindow(_this, window) < 0) {
SDL_DestroyWindow(window);
return NULL;
Sep 15, 2008
Sep 15, 2008
795
796
797
}
if (title) {
Jan 21, 2010
Jan 21, 2010
798
SDL_SetWindowTitle(window, title);
Sep 15, 2008
Sep 15, 2008
799
800
}
if (flags & SDL_WINDOW_MAXIMIZED) {
Jan 21, 2010
Jan 21, 2010
801
SDL_MaximizeWindow(window);
Sep 15, 2008
Sep 15, 2008
802
803
}
if (flags & SDL_WINDOW_MINIMIZED) {
Jan 21, 2010
Jan 21, 2010
804
SDL_MinimizeWindow(window);
Sep 15, 2008
Sep 15, 2008
805
806
}
if (flags & SDL_WINDOW_SHOWN) {
Jan 21, 2010
Jan 21, 2010
807
SDL_ShowWindow(window);
Sep 15, 2008
Sep 15, 2008
808
}
Jan 21, 2010
Jan 21, 2010
809
SDL_UpdateWindowGrab(window);
Dec 17, 2008
Dec 17, 2008
810
Jan 21, 2010
Jan 21, 2010
811
return window;
Apr 26, 2001
Apr 26, 2001
812
813
}
Jan 21, 2010
Jan 21, 2010
814
SDL_Window *
Jul 10, 2006
Jul 10, 2006
815
816
SDL_CreateWindowFrom(const void *data)
{
Sep 15, 2008
Sep 15, 2008
817
SDL_VideoDisplay *display;
Jan 21, 2010
Jan 21, 2010
818
SDL_Window *window;
Sep 15, 2008
Sep 15, 2008
819
820
821
if (!_this) {
SDL_UninitializedVideo();
Jan 21, 2010
Jan 21, 2010
822
return NULL;
Sep 15, 2008
Sep 15, 2008
823
}
Jan 21, 2010
Jan 21, 2010
824
825
display = SDL_CurrentDisplay;
window = (SDL_Window *)SDL_calloc(1, sizeof(*window));
Jan 24, 2010
Jan 24, 2010
826
window->magic = &_this->window_magic;
Jan 21, 2010
Jan 21, 2010
827
828
829
830
window->id = _this->next_object_id++;
window->flags = SDL_WINDOW_FOREIGN;
window->display = display;
window->next = display->windows;
Jan 22, 2010
Jan 22, 2010
831
832
833
if (display->windows) {
display->windows->prev = window;
}
Jan 21, 2010
Jan 21, 2010
834
display->windows = window;
Sep 15, 2008
Sep 15, 2008
835
836
if (!_this->CreateWindowFrom ||
Jan 21, 2010
Jan 21, 2010
837
838
839
_this->CreateWindowFrom(_this, window, data) < 0) {
SDL_DestroyWindow(window);
return NULL;
Sep 15, 2008
Sep 15, 2008
840
}
Jan 21, 2010
Jan 21, 2010
841
return window;
Apr 26, 2001
Apr 26, 2001
842
843
}
Jul 22, 2006
Jul 22, 2006
844
int
Jul 23, 2006
Jul 23, 2006
845
SDL_RecreateWindow(SDL_Window * window, Uint32 flags)
Jul 22, 2006
Jul 22, 2006
846
{
Feb 9, 2009
Feb 9, 2009
847
848
849
850
const Uint32 allowed_flags = (SDL_WINDOW_FULLSCREEN |
SDL_WINDOW_OPENGL |
SDL_WINDOW_BORDERLESS |
SDL_WINDOW_RESIZABLE |
Nov 24, 2009
Nov 24, 2009
851
852
SDL_WINDOW_INPUT_GRABBED |
SDL_WINDOW_FOREIGN);
Sep 15, 2008
Sep 15, 2008
853
854
855
856
857
858
char *title = window->title;
if ((flags & SDL_WINDOW_OPENGL) && !_this->GL_CreateContext) {
SDL_SetError("No OpenGL support in video driver");
return -1;
}
Feb 9, 2009
Feb 9, 2009
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
if ((window->flags & SDL_WINDOW_OPENGL) != (flags & SDL_WINDOW_OPENGL)) {
if (flags & SDL_WINDOW_OPENGL) {
SDL_GL_LoadLibrary(NULL);
} else {
SDL_GL_UnloadLibrary();
}
}
if (window->flags & SDL_WINDOW_FOREIGN) {
/* Can't destroy and re-create foreign windows, hrm */
flags |= SDL_WINDOW_FOREIGN;
} else {
flags &= ~SDL_WINDOW_FOREIGN;
}
if (_this->DestroyWindow && !(flags & SDL_WINDOW_FOREIGN)) {
Sep 15, 2008
Sep 15, 2008
875
876
_this->DestroyWindow(_this, window);
}
Feb 9, 2009
Feb 9, 2009
877
Sep 15, 2008
Sep 15, 2008
878
window->title = NULL;
Feb 9, 2009
Feb 9, 2009
879
window->flags = (flags & allowed_flags);
Sep 15, 2008
Sep 15, 2008
880
Feb 9, 2009
Feb 9, 2009
881
882
883
884
885
886
887
if (_this->CreateWindow && !(flags & SDL_WINDOW_FOREIGN)) {
if (_this->CreateWindow(_this, window) < 0) {
if (flags & SDL_WINDOW_OPENGL) {
SDL_GL_UnloadLibrary();
}
return -1;
}
Sep 15, 2008
Sep 15, 2008
888
}
Feb 9, 2009
Feb 9, 2009
889
Sep 15, 2008
Sep 15, 2008
890
if (title) {
Jan 21, 2010
Jan 21, 2010
891
SDL_SetWindowTitle(window, title);
Sep 15, 2008
Sep 15, 2008
892
893
894
SDL_free(title);
}
if (flags & SDL_WINDOW_MAXIMIZED) {
Jan 21, 2010
Jan 21, 2010
895
SDL_MaximizeWindow(window);
Sep 15, 2008
Sep 15, 2008
896
897
}
if (flags & SDL_WINDOW_MINIMIZED) {
Jan 21, 2010
Jan 21, 2010
898
SDL_MinimizeWindow(window);
Sep 15, 2008
Sep 15, 2008
899
900
}
if (flags & SDL_WINDOW_SHOWN) {
Jan 21, 2010
Jan 21, 2010
901
SDL_ShowWindow(window);
Sep 15, 2008
Sep 15, 2008
902
}
Dec 17, 2008
Dec 17, 2008
903
904
SDL_UpdateWindowGrab(window);
Sep 15, 2008
Sep 15, 2008
905
906
907
return 0;
}
Jan 21, 2010
Jan 21, 2010
908
909
Uint32
SDL_GetWindowID(SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
910
{
Jan 24, 2010
Jan 24, 2010
911
912
CHECK_WINDOW_MAGIC(window, 0);
Jan 21, 2010
Jan 21, 2010
913
return window->id;
Apr 26, 2001
Apr 26, 2001
914
915
}
Jan 21, 2010
Jan 21, 2010
916
917
SDL_Window *
SDL_GetWindowFromID(Uint32 id)
Oct 28, 2009
Oct 28, 2009
918
{
Jan 21, 2010
Jan 21, 2010
919
920
921
SDL_Window *window;
int i;
Oct 28, 2009
Oct 28, 2009
922
923
924
if (!_this) {
return NULL;
}
Jan 21, 2010
Jan 21, 2010
925
926
927
928
929
930
931
/* FIXME: Should we keep a separate hash table for these? */
for (i = _this->num_displays; i--;) {
SDL_VideoDisplay *display = &_this->displays[i];
for (window = display->windows; window; window = window->next) {
if (window->id == id) {
return window;
}
Oct 28, 2009
Oct 28, 2009
932
933
}
}
Jan 21, 2010
Jan 21, 2010
934
return NULL;
Oct 28, 2009
Oct 28, 2009
935
936
}
Jul 10, 2006
Jul 10, 2006
937
Uint32
Jan 21, 2010
Jan 21, 2010
938
SDL_GetWindowFlags(SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
939
{
Jan 24, 2010
Jan 24, 2010
940
941
CHECK_WINDOW_MAGIC(window, 0);
Sep 15, 2008
Sep 15, 2008
942
return window->flags;
Apr 26, 2001
Apr 26, 2001
943
944
}
Jul 10, 2006
Jul 10, 2006
945
void
Jan 21, 2010
Jan 21, 2010
946
SDL_SetWindowTitle(SDL_Window * window, const char *title)
Jul 10, 2006
Jul 10, 2006
947
{
Jan 24, 2010
Jan 24, 2010
948
949
950
CHECK_WINDOW_MAGIC(window, );
if (title == window->title) {
Sep 15, 2008
Sep 15, 2008
951
952
953
954
955
return;
}
if (window->title) {
SDL_free(window->title);
}
Aug 29, 2010
Aug 29, 2010
956
if (title && *title) {
Sep 15, 2008
Sep 15, 2008
957
958
959
960
window->title = SDL_strdup(title);
} else {
window->title = NULL;
}
Jul 10, 2006
Jul 10, 2006
961
Sep 15, 2008
Sep 15, 2008
962
963
964
if (_this->SetWindowTitle) {
_this->SetWindowTitle(_this, window);
}
Apr 26, 2001
Apr 26, 2001
965
966
}
Sep 15, 2008
Sep 15, 2008
967
const char *
Jan 21, 2010
Jan 21, 2010
968
SDL_GetWindowTitle(SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
969
{
Aug 29, 2010
Aug 29, 2010
970
CHECK_WINDOW_MAGIC(window, "");
Jan 24, 2010
Jan 24, 2010
971
Aug 29, 2010
Aug 29, 2010
972
return window->title ? window->title : "";
Apr 26, 2001
Apr 26, 2001
973
974
}
Jan 2, 2009
Jan 2, 2009
975
void
Jan 21, 2010
Jan 21, 2010
976
SDL_SetWindowIcon(SDL_Window * window, SDL_Surface * icon)
Jan 2, 2009
Jan 2, 2009
977
{
Jan 24, 2010
Jan 24, 2010
978
979
CHECK_WINDOW_MAGIC(window, );
Jan 2, 2009
Jan 2, 2009
980
981
982
983
984
if (_this->SetWindowIcon) {
_this->SetWindowIcon(_this, window, icon);
}
}
Feb 3, 2011
Feb 3, 2011
985
986
void*
SDL_SetWindowData(SDL_Window * window, const char *name, void *userdata)
Jul 10, 2006
Jul 10, 2006
987
{
Feb 3, 2011
Feb 3, 2011
988
989
990
991
992
993
994
995
996
997
998
999
1000
SDL_WindowUserData *prev, *data;
CHECK_WINDOW_MAGIC(window, NULL);
/* See if the named data already exists */
prev = NULL;
for (data = window->data; data; prev = data, data = data->next) {
if (SDL_strcmp(data->name, name) == 0) {
void *last_value = data->data;
if (userdata) {
/* Set the new value */
data->data = userdata;