Mercurial > sdl-ios-xcode
annotate src/video/SDL_video.c @ 1658:e49147870aac SDL-1.3
glSDL support
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 01 May 2006 06:58:33 +0000 |
parents | 96c2f89cc7e1 |
children | 8b9d79e7eacf |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1296
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
229
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1385
diff
changeset
|
22 #include "SDL_config.h" |
0 | 23 |
24 /* The high-level video driver subsystem */ | |
25 | |
26 #include "SDL.h" | |
27 #include "SDL_sysvideo.h" | |
28 #include "SDL_blit.h" | |
29 #include "SDL_pixels_c.h" | |
30 #include "SDL_cursor_c.h" | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
31 #include "../events/SDL_sysevents.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
32 #include "../events/SDL_events_c.h" |
0 | 33 |
34 /* Available video drivers */ | |
35 static VideoBootStrap *bootstrap[] = { | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
36 #if SDL_VIDEO_DRIVER_QUARTZ |
1133
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
1076
diff
changeset
|
37 &QZ_bootstrap, |
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
1076
diff
changeset
|
38 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
39 #if SDL_VIDEO_DRIVER_X11 |
0 | 40 &X11_bootstrap, |
41 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
42 #if SDL_VIDEO_DRIVER_DGA |
0 | 43 &DGA_bootstrap, |
44 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
45 #if SDL_VIDEO_DRIVER_NANOX |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
19
diff
changeset
|
46 &NX_bootstrap, |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
19
diff
changeset
|
47 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
48 #if SDL_VIDEO_DRIVER_IPOD |
1140
af8b0f9ac2f4
iPod Linux framebuffer support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1133
diff
changeset
|
49 &iPod_bootstrap, |
af8b0f9ac2f4
iPod Linux framebuffer support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1133
diff
changeset
|
50 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
51 #if SDL_VIDEO_DRIVER_QTOPIA |
567 | 52 &Qtopia_bootstrap, |
53 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
54 #if SDL_VIDEO_DRIVER_WSCONS |
1187 | 55 &WSCONS_bootstrap, |
56 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
57 #if SDL_VIDEO_DRIVER_FBCON |
0 | 58 &FBCON_bootstrap, |
59 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
60 #if SDL_VIDEO_DRIVER_DIRECTFB |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
125
diff
changeset
|
61 &DirectFB_bootstrap, |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
125
diff
changeset
|
62 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
63 #if SDL_VIDEO_DRIVER_PS2GS |
0 | 64 &PS2GS_bootstrap, |
65 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
66 #if SDL_VIDEO_DRIVER_GGI |
0 | 67 &GGI_bootstrap, |
68 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
69 #if SDL_VIDEO_DRIVER_VGL |
75
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
58
diff
changeset
|
70 &VGL_bootstrap, |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
58
diff
changeset
|
71 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
72 #if SDL_VIDEO_DRIVER_SVGALIB |
0 | 73 &SVGALIB_bootstrap, |
74 #endif | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
75 #if SDL_VIDEO_DRIVER_GAPI |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
76 &GAPI_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
77 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
78 #if SDL_VIDEO_DRIVER_WINDIB |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
79 &WINDIB_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
80 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
81 #if SDL_VIDEO_DRIVER_DDRAW |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
82 &DIRECTX_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
83 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
84 #if SDL_VIDEO_DRIVER_BWINDOW |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
85 &BWINDOW_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
86 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
87 #if SDL_VIDEO_DRIVER_TOOLBOX |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
88 &TOOLBOX_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
89 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
90 #if SDL_VIDEO_DRIVER_DRAWSPROCKET |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
91 &DSp_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
92 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
93 #if SDL_VIDEO_DRIVER_CYBERGRAPHICS |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
94 &CGX_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
95 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
96 #if SDL_VIDEO_DRIVER_PHOTON |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
97 &ph_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
98 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
99 #if SDL_VIDEO_DRIVER_EPOC |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
100 &EPOC_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
101 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
102 #if SDL_VIDEO_DRIVER_XBIOS |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
103 &XBIOS_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
104 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
105 #if SDL_VIDEO_DRIVER_GEM |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
106 &GEM_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
107 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
108 #if SDL_VIDEO_DRIVER_PICOGUI |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
109 &PG_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
110 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
111 #if SDL_VIDEO_DRIVER_DC |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
112 &DC_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
113 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
114 #if SDL_VIDEO_DRIVER_RISCOS |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
115 &RISCOS_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
116 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
117 #if SDL_VIDEO_DRIVER_OS2FS |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
118 &OS2FSLib_bootstrap, |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
119 #endif |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
120 #if SDL_VIDEO_DRIVER_AALIB |
610
95433459fbd2
Date: Mon, 14 Apr 2003 22:08:27 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
580
diff
changeset
|
121 &AALIB_bootstrap, |
0 | 122 #endif |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
123 #if SDL_VIDEO_DRIVER_DUMMY |
610
95433459fbd2
Date: Mon, 14 Apr 2003 22:08:27 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
580
diff
changeset
|
124 &DUMMY_bootstrap, |
95433459fbd2
Date: Mon, 14 Apr 2003 22:08:27 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
580
diff
changeset
|
125 #endif |
1658 | 126 #if SDL_VIDEO_DRIVER_GLSDL |
127 &glSDL_bootstrap, | |
128 #endif | |
0 | 129 NULL |
130 }; | |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
167
diff
changeset
|
131 |
0 | 132 SDL_VideoDevice *current_video = NULL; |
133 | |
134 /* Various local functions */ | |
135 int SDL_VideoInit(const char *driver_name, Uint32 flags); | |
136 void SDL_VideoQuit(void); | |
137 | |
138 static SDL_GrabMode SDL_WM_GrabInputOff(void); | |
139 | |
140 | |
141 /* | |
142 * Initialize the video and event subsystems -- determine native pixel format | |
143 */ | |
144 int SDL_VideoInit (const char *driver_name, Uint32 flags) | |
145 { | |
146 SDL_VideoDevice *video; | |
147 int index; | |
148 int i; | |
149 SDL_PixelFormat vformat; | |
150 Uint32 video_flags; | |
151 | |
152 /* Toggle the event thread flags, based on OS requirements */ | |
153 #if defined(MUST_THREAD_EVENTS) | |
154 flags |= SDL_INIT_EVENTTHREAD; | |
155 #elif defined(CANT_THREAD_EVENTS) | |
156 if ( (flags & SDL_INIT_EVENTTHREAD) == SDL_INIT_EVENTTHREAD ) { | |
157 SDL_SetError("OS doesn't support threaded events"); | |
158 return(-1); | |
159 } | |
160 #endif | |
161 | |
162 /* Check to make sure we don't overwrite 'current_video' */ | |
163 if ( current_video != NULL ) { | |
164 SDL_VideoQuit(); | |
165 } | |
166 | |
167 /* Select the proper video driver */ | |
168 index = 0; | |
169 video = NULL; | |
170 if ( driver_name != NULL ) { | |
171 #if 0 /* This will be replaced with a better driver selection API */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
172 if ( SDL_strrchr(driver_name, ':') != NULL ) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
173 index = atoi(SDL_strrchr(driver_name, ':')+1); |
0 | 174 } |
175 #endif | |
176 for ( i=0; bootstrap[i]; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
177 if ( SDL_strncmp(bootstrap[i]->name, driver_name, |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
178 SDL_strlen(bootstrap[i]->name)) == 0 ) { |
0 | 179 if ( bootstrap[i]->available() ) { |
180 video = bootstrap[i]->create(index); | |
181 break; | |
182 } | |
183 } | |
184 } | |
185 } else { | |
186 for ( i=0; bootstrap[i]; ++i ) { | |
187 if ( bootstrap[i]->available() ) { | |
188 video = bootstrap[i]->create(index); | |
189 if ( video != NULL ) { | |
190 break; | |
191 } | |
192 } | |
193 } | |
194 } | |
195 if ( video == NULL ) { | |
196 SDL_SetError("No available video device"); | |
197 return(-1); | |
198 } | |
199 current_video = video; | |
200 current_video->name = bootstrap[i]->name; | |
201 | |
202 /* Do some basic variable initialization */ | |
203 video->screen = NULL; | |
204 video->shadow = NULL; | |
205 video->visible = NULL; | |
206 video->physpal = NULL; | |
207 video->gammacols = NULL; | |
208 video->gamma = NULL; | |
209 video->wm_title = NULL; | |
210 video->wm_icon = NULL; | |
211 video->offset_x = 0; | |
212 video->offset_y = 0; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
213 SDL_memset(&video->info, 0, (sizeof video->info)); |
1052
68f607298ca9
Some work on using accelerated alpha blits with hardware surfaces.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
214 |
68f607298ca9
Some work on using accelerated alpha blits with hardware surfaces.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
215 video->displayformatalphapixel = NULL; |
0 | 216 |
217 /* Set some very sane GL defaults */ | |
218 video->gl_config.driver_loaded = 0; | |
219 video->gl_config.dll_handle = NULL; | |
1385
85d8b5fdd9f6
Fixed defaults for 8 bpp visuals
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
220 video->gl_config.red_size = 3; |
85d8b5fdd9f6
Fixed defaults for 8 bpp visuals
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
221 video->gl_config.green_size = 3; |
85d8b5fdd9f6
Fixed defaults for 8 bpp visuals
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
222 video->gl_config.blue_size = 2; |
0 | 223 video->gl_config.alpha_size = 0; |
224 video->gl_config.buffer_size = 0; | |
225 video->gl_config.depth_size = 16; | |
226 video->gl_config.stencil_size = 0; | |
227 video->gl_config.double_buffer = 1; | |
228 video->gl_config.accum_red_size = 0; | |
229 video->gl_config.accum_green_size = 0; | |
230 video->gl_config.accum_blue_size = 0; | |
231 video->gl_config.accum_alpha_size = 0; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
232 video->gl_config.stereo = 0; |
656
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
233 video->gl_config.multisamplebuffers = 0; |
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
234 video->gl_config.multisamplesamples = 0; |
1656 | 235 video->gl_config.accelerated = -1; /* not known, don't set */ |
236 video->gl_config.swap_control = -1; /* not known, don't set */ | |
0 | 237 |
238 /* Initialize the video subsystem */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
239 SDL_memset(&vformat, 0, sizeof(vformat)); |
0 | 240 if ( video->VideoInit(video, &vformat) < 0 ) { |
241 SDL_VideoQuit(); | |
242 return(-1); | |
243 } | |
244 | |
245 /* Create a zero sized video surface of the appropriate format */ | |
246 video_flags = SDL_SWSURFACE; | |
247 SDL_VideoSurface = SDL_CreateRGBSurface(video_flags, 0, 0, | |
248 vformat.BitsPerPixel, | |
249 vformat.Rmask, vformat.Gmask, vformat.Bmask, 0); | |
250 if ( SDL_VideoSurface == NULL ) { | |
251 SDL_VideoQuit(); | |
252 return(-1); | |
253 } | |
254 SDL_PublicSurface = NULL; /* Until SDL_SetVideoMode() */ | |
255 | |
256 #if 0 /* Don't change the current palette - may be used by other programs. | |
257 * The application can't do anything with the display surface until | |
258 * a video mode has been set anyway. :) | |
259 */ | |
260 /* If we have a palettized surface, create a default palette */ | |
261 if ( SDL_VideoSurface->format->palette ) { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
262 SDL_PixelFormat *vf = SDL_VideoSurface->format; |
0 | 263 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel); |
264 video->SetColors(video, | |
265 0, vf->palette->ncolors, vf->palette->colors); | |
266 } | |
267 #endif | |
268 video->info.vfmt = SDL_VideoSurface->format; | |
269 | |
270 /* Start the event loop */ | |
271 if ( SDL_StartEventLoop(flags) < 0 ) { | |
272 SDL_VideoQuit(); | |
273 return(-1); | |
274 } | |
275 SDL_CursorInit(flags & SDL_INIT_EVENTTHREAD); | |
276 | |
277 /* We're ready to go! */ | |
278 return(0); | |
279 } | |
280 | |
281 char *SDL_VideoDriverName(char *namebuf, int maxlen) | |
282 { | |
283 if ( current_video != NULL ) { | |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
284 SDL_strlcpy(namebuf, current_video->name, maxlen); |
0 | 285 return(namebuf); |
286 } | |
287 return(NULL); | |
288 } | |
289 | |
290 /* | |
291 * Get the current display surface | |
292 */ | |
293 SDL_Surface *SDL_GetVideoSurface(void) | |
294 { | |
295 SDL_Surface *visible; | |
296 | |
297 visible = NULL; | |
298 if ( current_video ) { | |
299 visible = current_video->visible; | |
300 } | |
301 return(visible); | |
302 } | |
303 | |
304 /* | |
305 * Get the current information about the video hardware | |
306 */ | |
307 const SDL_VideoInfo *SDL_GetVideoInfo(void) | |
308 { | |
309 const SDL_VideoInfo *info; | |
310 | |
311 info = NULL; | |
312 if ( current_video ) { | |
313 info = ¤t_video->info; | |
314 } | |
315 return(info); | |
316 } | |
317 | |
318 /* | |
319 * Return a pointer to an array of available screen dimensions for the | |
320 * given format, sorted largest to smallest. Returns NULL if there are | |
321 * no dimensions available for a particular format, or (SDL_Rect **)-1 | |
322 * if any dimension is okay for the given format. If 'format' is NULL, | |
323 * the mode list will be for the format given by SDL_GetVideoInfo()->vfmt | |
324 */ | |
325 SDL_Rect ** SDL_ListModes (SDL_PixelFormat *format, Uint32 flags) | |
326 { | |
327 SDL_VideoDevice *video = current_video; | |
328 SDL_VideoDevice *this = current_video; | |
329 SDL_Rect **modes; | |
330 | |
331 modes = NULL; | |
332 if ( SDL_VideoSurface ) { | |
333 if ( format == NULL ) { | |
334 format = SDL_VideoSurface->format; | |
335 } | |
336 modes = video->ListModes(this, format, flags); | |
337 } | |
338 return(modes); | |
339 } | |
340 | |
341 /* | |
342 * Check to see if a particular video mode is supported. | |
343 * It returns 0 if the requested mode is not supported under any bit depth, | |
344 * or returns the bits-per-pixel of the closest available mode with the | |
345 * given width and height. If this bits-per-pixel is different from the | |
346 * one used when setting the video mode, SDL_SetVideoMode() will succeed, | |
347 * but will emulate the requested bits-per-pixel with a shadow surface. | |
348 */ | |
349 static Uint8 SDL_closest_depths[4][8] = { | |
350 /* 8 bit closest depth ordering */ | |
351 { 0, 8, 16, 15, 32, 24, 0, 0 }, | |
352 /* 15,16 bit closest depth ordering */ | |
353 { 0, 16, 15, 32, 24, 8, 0, 0 }, | |
354 /* 24 bit closest depth ordering */ | |
355 { 0, 24, 32, 16, 15, 8, 0, 0 }, | |
356 /* 32 bit closest depth ordering */ | |
357 { 0, 32, 16, 15, 24, 8, 0, 0 } | |
358 }; | |
359 | |
853
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
360 |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1385
diff
changeset
|
361 #ifdef __MACOS__ /* MPW optimization bug? */ |
853
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
362 #define NEGATIVE_ONE 0xFFFFFFFF |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
363 #else |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
364 #define NEGATIVE_ONE -1 |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
365 #endif |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
366 |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
367 int SDL_VideoModeOK (int width, int height, int bpp, Uint32 flags) |
0 | 368 { |
369 int table, b, i; | |
370 int supported; | |
371 SDL_PixelFormat format; | |
372 SDL_Rect **sizes; | |
373 | |
374 /* Currently 1 and 4 bpp are not supported */ | |
375 if ( bpp < 8 || bpp > 32 ) { | |
376 return(0); | |
377 } | |
456
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
378 if ( (width <= 0) || (height <= 0) ) { |
0 | 379 return(0); |
380 } | |
381 | |
382 /* Search through the list valid of modes */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
383 SDL_memset(&format, 0, sizeof(format)); |
0 | 384 supported = 0; |
385 table = ((bpp+7)/8)-1; | |
386 SDL_closest_depths[table][0] = bpp; | |
387 SDL_closest_depths[table][7] = 0; | |
388 for ( b = 0; !supported && SDL_closest_depths[table][b]; ++b ) { | |
389 format.BitsPerPixel = SDL_closest_depths[table][b]; | |
390 sizes = SDL_ListModes(&format, flags); | |
391 if ( sizes == (SDL_Rect **)0 ) { | |
392 /* No sizes supported at this bit-depth */ | |
393 continue; | |
394 } else | |
853
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
395 if (sizes == (SDL_Rect **)NEGATIVE_ONE) { |
0 | 396 /* Any size supported at this bit-depth */ |
397 supported = 1; | |
398 continue; | |
853
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
399 } else if (current_video->handles_any_size) { |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
400 /* Driver can center a smaller surface to simulate fullscreen */ |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
401 for ( i=0; sizes[i]; ++i ) { |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
402 if ((sizes[i]->w >= width) && (sizes[i]->h >= height)) { |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
403 supported = 1; /* this mode can fit the centered window. */ |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
404 break; |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
405 } |
dddfc37e1f65
Don't allow video modes larger than the maximum size
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
406 } |
0 | 407 } else |
408 for ( i=0; sizes[i]; ++i ) { | |
409 if ((sizes[i]->w == width) && (sizes[i]->h == height)) { | |
410 supported = 1; | |
411 break; | |
412 } | |
413 } | |
414 } | |
415 if ( supported ) { | |
416 --b; | |
417 return(SDL_closest_depths[table][b]); | |
418 } else { | |
419 return(0); | |
420 } | |
421 } | |
422 | |
423 /* | |
424 * Get the closest non-emulated video mode to the one requested | |
425 */ | |
426 static int SDL_GetVideoMode (int *w, int *h, int *BitsPerPixel, Uint32 flags) | |
427 { | |
428 int table, b, i; | |
429 int supported; | |
430 int native_bpp; | |
431 SDL_PixelFormat format; | |
432 SDL_Rect **sizes; | |
433 | |
456
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
434 /* Check parameters */ |
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
435 if ( *BitsPerPixel < 8 || *BitsPerPixel > 32 ) { |
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
436 SDL_SetError("Invalid bits per pixel (range is {8...32})"); |
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
437 return(0); |
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
438 } |
430
60effdbf14ee
Make sure width and height passed to SDL_GetVideoMode() are sane.
Ryan C. Gordon <icculus@icculus.org>
parents:
423
diff
changeset
|
439 if ((*w <= 0) || (*h <= 0)) { |
456
b4e14b15af3c
Fixed crash with invalid bpp in SDL_SetVideoMode()
Sam Lantinga <slouken@libsdl.org>
parents:
450
diff
changeset
|
440 SDL_SetError("Invalid width or height"); |
430
60effdbf14ee
Make sure width and height passed to SDL_GetVideoMode() are sane.
Ryan C. Gordon <icculus@icculus.org>
parents:
423
diff
changeset
|
441 return(0); |
60effdbf14ee
Make sure width and height passed to SDL_GetVideoMode() are sane.
Ryan C. Gordon <icculus@icculus.org>
parents:
423
diff
changeset
|
442 } |
60effdbf14ee
Make sure width and height passed to SDL_GetVideoMode() are sane.
Ryan C. Gordon <icculus@icculus.org>
parents:
423
diff
changeset
|
443 |
0 | 444 /* Try the original video mode, get the closest depth */ |
445 native_bpp = SDL_VideoModeOK(*w, *h, *BitsPerPixel, flags); | |
446 if ( native_bpp == *BitsPerPixel ) { | |
447 return(1); | |
448 } | |
449 if ( native_bpp > 0 ) { | |
450 *BitsPerPixel = native_bpp; | |
451 return(1); | |
452 } | |
453 | |
454 /* No exact size match at any depth, look for closest match */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
455 SDL_memset(&format, 0, sizeof(format)); |
0 | 456 supported = 0; |
457 table = ((*BitsPerPixel+7)/8)-1; | |
458 SDL_closest_depths[table][0] = *BitsPerPixel; | |
459 SDL_closest_depths[table][7] = SDL_VideoSurface->format->BitsPerPixel; | |
460 for ( b = 0; !supported && SDL_closest_depths[table][b]; ++b ) { | |
1076
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
461 int best; |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
462 |
0 | 463 format.BitsPerPixel = SDL_closest_depths[table][b]; |
464 sizes = SDL_ListModes(&format, flags); | |
465 if ( sizes == (SDL_Rect **)0 ) { | |
466 /* No sizes supported at this bit-depth */ | |
467 continue; | |
468 } | |
1076
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
469 best=0; |
0 | 470 for ( i=0; sizes[i]; ++i ) { |
1076
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
471 /* Mode with both dimensions bigger or equal than asked ? */ |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
472 if ((sizes[i]->w >= *w) && (sizes[i]->h >= *h)) { |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
473 /* Mode with any dimension smaller or equal than current best ? */ |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
474 if ((sizes[i]->w <= sizes[best]->w) || (sizes[i]->h <= sizes[best]->h)) { |
1257
448a9a64537b
[PATCH] SDL_GetVideoMode() does not find best mode, part 2
Patrice Mandin <patmandin@gmail.com>
parents:
1254
diff
changeset
|
475 /* Now choose the mode that has less pixels */ |
1266
a7bea6db3c3e
SDL_GetVideoMode, part 3: pixel count compare was failing when only 1 video mode was present
Patrice Mandin <patmandin@gmail.com>
parents:
1257
diff
changeset
|
476 if ((sizes[i]->w * sizes[i]->h) <= (sizes[best]->w * sizes[best]->h)) { |
1257
448a9a64537b
[PATCH] SDL_GetVideoMode() does not find best mode, part 2
Patrice Mandin <patmandin@gmail.com>
parents:
1254
diff
changeset
|
477 best=i; |
448a9a64537b
[PATCH] SDL_GetVideoMode() does not find best mode, part 2
Patrice Mandin <patmandin@gmail.com>
parents:
1254
diff
changeset
|
478 supported = 1; |
448a9a64537b
[PATCH] SDL_GetVideoMode() does not find best mode, part 2
Patrice Mandin <patmandin@gmail.com>
parents:
1254
diff
changeset
|
479 } |
0 | 480 } |
481 } | |
482 } | |
1076
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
483 if (supported) { |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
484 *w=sizes[best]->w; |
8d3b95ece376
[PATCH] SDL_GetVideoMode() do not find the best video mode
Patrice Mandin <patmandin@gmail.com>
parents:
1052
diff
changeset
|
485 *h=sizes[best]->h; |
0 | 486 *BitsPerPixel = SDL_closest_depths[table][b]; |
487 } | |
488 } | |
489 if ( ! supported ) { | |
490 SDL_SetError("No video mode large enough for %dx%d", *w, *h); | |
491 } | |
492 return(supported); | |
493 } | |
494 | |
495 /* This should probably go somewhere else -- like SDL_surface.c */ | |
496 static void SDL_ClearSurface(SDL_Surface *surface) | |
497 { | |
498 Uint32 black; | |
499 | |
500 black = SDL_MapRGB(surface->format, 0, 0, 0); | |
501 SDL_FillRect(surface, NULL, black); | |
502 if ((surface->flags&SDL_HWSURFACE) && (surface->flags&SDL_DOUBLEBUF)) { | |
503 SDL_Flip(surface); | |
504 SDL_FillRect(surface, NULL, black); | |
505 } | |
506 SDL_Flip(surface); | |
507 } | |
508 | |
509 /* | |
510 * Create a shadow surface suitable for fooling the app. :-) | |
511 */ | |
512 static void SDL_CreateShadowSurface(int depth) | |
513 { | |
514 Uint32 Rmask, Gmask, Bmask; | |
515 | |
516 /* Allocate the shadow surface */ | |
517 if ( depth == (SDL_VideoSurface->format)->BitsPerPixel ) { | |
518 Rmask = (SDL_VideoSurface->format)->Rmask; | |
519 Gmask = (SDL_VideoSurface->format)->Gmask; | |
520 Bmask = (SDL_VideoSurface->format)->Bmask; | |
521 } else { | |
522 Rmask = Gmask = Bmask = 0; | |
523 } | |
524 SDL_ShadowSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, | |
525 SDL_VideoSurface->w, SDL_VideoSurface->h, | |
526 depth, Rmask, Gmask, Bmask, 0); | |
527 if ( SDL_ShadowSurface == NULL ) { | |
528 return; | |
529 } | |
530 | |
531 /* 8-bit shadow surfaces report that they have exclusive palette */ | |
532 if ( SDL_ShadowSurface->format->palette ) { | |
533 SDL_ShadowSurface->flags |= SDL_HWPALETTE; | |
534 if ( depth == (SDL_VideoSurface->format)->BitsPerPixel ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
535 SDL_memcpy(SDL_ShadowSurface->format->palette->colors, |
0 | 536 SDL_VideoSurface->format->palette->colors, |
537 SDL_VideoSurface->format->palette->ncolors* | |
538 sizeof(SDL_Color)); | |
539 } else { | |
540 SDL_DitherColors( | |
541 SDL_ShadowSurface->format->palette->colors, depth); | |
542 } | |
543 } | |
544 | |
545 /* If the video surface is resizable, the shadow should say so */ | |
546 if ( (SDL_VideoSurface->flags & SDL_RESIZABLE) == SDL_RESIZABLE ) { | |
547 SDL_ShadowSurface->flags |= SDL_RESIZABLE; | |
548 } | |
549 /* If the video surface has no frame, the shadow should say so */ | |
550 if ( (SDL_VideoSurface->flags & SDL_NOFRAME) == SDL_NOFRAME ) { | |
551 SDL_ShadowSurface->flags |= SDL_NOFRAME; | |
552 } | |
553 /* If the video surface is fullscreen, the shadow should say so */ | |
554 if ( (SDL_VideoSurface->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
555 SDL_ShadowSurface->flags |= SDL_FULLSCREEN; | |
556 } | |
557 /* If the video surface is flippable, the shadow should say so */ | |
558 if ( (SDL_VideoSurface->flags & SDL_DOUBLEBUF) == SDL_DOUBLEBUF ) { | |
559 SDL_ShadowSurface->flags |= SDL_DOUBLEBUF; | |
560 } | |
561 return; | |
562 } | |
563 | |
910
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
564 #ifdef __QNXNTO__ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
565 #include <sys/neutrino.h> |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
566 #endif /* __QNXNTO__ */ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
567 |
0 | 568 /* |
569 * Set the requested video mode, allocating a shadow buffer if necessary. | |
570 */ | |
571 SDL_Surface * SDL_SetVideoMode (int width, int height, int bpp, Uint32 flags) | |
572 { | |
573 SDL_VideoDevice *video, *this; | |
574 SDL_Surface *prev_mode, *mode; | |
575 int video_w; | |
576 int video_h; | |
577 int video_bpp; | |
578 int is_opengl; | |
579 SDL_GrabMode saved_grab; | |
580 | |
581 /* Start up the video driver, if necessary.. | |
582 WARNING: This is the only function protected this way! | |
583 */ | |
584 if ( ! current_video ) { | |
585 if ( SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE) < 0 ) { | |
586 return(NULL); | |
587 } | |
588 } | |
589 this = video = current_video; | |
590 | |
1545
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
591 /* Default to the current width and height */ |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
592 if ( width == 0 ) { |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
593 width = video->info.current_w; |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
594 } |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
595 if ( height == 0 ) { |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
596 height = video->info.current_h; |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
597 } |
0 | 598 /* Default to the current video bpp */ |
599 if ( bpp == 0 ) { | |
600 flags |= SDL_ANYFORMAT; | |
601 bpp = SDL_VideoSurface->format->BitsPerPixel; | |
602 } | |
603 | |
604 /* Get a good video mode, the closest one possible */ | |
605 video_w = width; | |
606 video_h = height; | |
607 video_bpp = bpp; | |
608 if ( ! SDL_GetVideoMode(&video_w, &video_h, &video_bpp, flags) ) { | |
609 return(NULL); | |
610 } | |
611 | |
612 /* Check the requested flags */ | |
1658 | 613 if ( flags & SDL_INTERNALOPENGL ) { |
614 SDL_SetError("SDL_INTERNALOPENGL is for internal use only"); | |
615 return(NULL); | |
616 } | |
0 | 617 if ( video_bpp > 8 ) { |
1658 | 618 /* There's no palette in > 8 bits-per-pixel mode */ |
0 | 619 flags &= ~SDL_HWPALETTE; |
620 } | |
621 #if 0 | |
622 if ( (flags&SDL_FULLSCREEN) != SDL_FULLSCREEN ) { | |
623 /* There's no windowed double-buffering */ | |
624 flags &= ~SDL_DOUBLEBUF; | |
625 } | |
626 #endif | |
627 if ( (flags&SDL_DOUBLEBUF) == SDL_DOUBLEBUF ) { | |
628 /* Use hardware surfaces when double-buffering */ | |
629 flags |= SDL_HWSURFACE; | |
630 } | |
631 | |
632 is_opengl = ( ( flags & SDL_OPENGL ) == SDL_OPENGL ); | |
633 if ( is_opengl ) { | |
634 /* These flags are for 2D video modes only */ | |
635 flags &= ~(SDL_HWSURFACE|SDL_DOUBLEBUF); | |
1658 | 636 /* This flag tells the backends to treat the surface accordingly */ |
637 flags |= SDL_INTERNALOPENGL; | |
0 | 638 } |
639 | |
14
c3e9d4a623c1
Fixed stuck keys when changing the video mode
Sam Lantinga <slouken@lokigames.com>
parents:
11
diff
changeset
|
640 /* Reset the keyboard here so event callbacks can run */ |
c3e9d4a623c1
Fixed stuck keys when changing the video mode
Sam Lantinga <slouken@lokigames.com>
parents:
11
diff
changeset
|
641 SDL_ResetKeyboard(); |
460
a888b3ae31ff
Reset mouse state when changing video modes
Sam Lantinga <slouken@libsdl.org>
parents:
456
diff
changeset
|
642 SDL_ResetMouse(); |
1296 | 643 SDL_cursorstate &= ~CURSOR_USINGSW; |
14
c3e9d4a623c1
Fixed stuck keys when changing the video mode
Sam Lantinga <slouken@lokigames.com>
parents:
11
diff
changeset
|
644 |
0 | 645 /* Clean up any previous video mode */ |
646 if ( SDL_PublicSurface != NULL ) { | |
647 SDL_PublicSurface = NULL; | |
648 } | |
649 if ( SDL_ShadowSurface != NULL ) { | |
650 SDL_Surface *ready_to_go; | |
651 ready_to_go = SDL_ShadowSurface; | |
652 SDL_ShadowSurface = NULL; | |
653 SDL_FreeSurface(ready_to_go); | |
654 } | |
655 if ( video->physpal ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
656 SDL_free(video->physpal->colors); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
657 SDL_free(video->physpal); |
0 | 658 video->physpal = NULL; |
659 } | |
660 if( video->gammacols) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
661 SDL_free(video->gammacols); |
0 | 662 video->gammacols = NULL; |
663 } | |
664 | |
665 /* Save the previous grab state and turn off grab for mode switch */ | |
666 saved_grab = SDL_WM_GrabInputOff(); | |
667 | |
668 /* Try to set the video mode, along with offset and clipping */ | |
669 prev_mode = SDL_VideoSurface; | |
670 SDL_LockCursor(); | |
671 SDL_VideoSurface = NULL; /* In case it's freed by driver */ | |
672 mode = video->SetVideoMode(this, prev_mode,video_w,video_h,video_bpp,flags); | |
673 if ( mode ) { /* Prevent resize events from mode change */ | |
1190 | 674 /* But not on OS/2 */ |
675 #ifndef __OS2__ | |
0 | 676 SDL_PrivateResize(mode->w, mode->h); |
1190 | 677 #endif |
229
4d24d5a660a8
Fix a crash if an OpenGL video mode can't be set.
Sam Lantinga <slouken@libsdl.org>
parents:
216
diff
changeset
|
678 |
4d24d5a660a8
Fix a crash if an OpenGL video mode can't be set.
Sam Lantinga <slouken@libsdl.org>
parents:
216
diff
changeset
|
679 /* Sam - If we asked for OpenGL mode, and didn't get it, fail */ |
1658 | 680 if ( is_opengl && !(mode->flags & SDL_INTERNALOPENGL) ) { |
229
4d24d5a660a8
Fix a crash if an OpenGL video mode can't be set.
Sam Lantinga <slouken@libsdl.org>
parents:
216
diff
changeset
|
681 mode = NULL; |
883
50f5a29c6a17
Date: Sat, 10 Apr 2004 02:25:33 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
853
diff
changeset
|
682 SDL_SetError("OpenGL not available"); |
229
4d24d5a660a8
Fix a crash if an OpenGL video mode can't be set.
Sam Lantinga <slouken@libsdl.org>
parents:
216
diff
changeset
|
683 } |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
684 } |
0 | 685 /* |
686 * rcg11292000 | |
687 * If you try to set an SDL_OPENGL surface, and fail to find a | |
688 * matching visual, then the next call to SDL_SetVideoMode() | |
689 * will segfault, since we no longer point to a dummy surface, | |
690 * but rather NULL. | |
691 * Sam 11/29/00 | |
692 * WARNING, we need to make sure that the previous mode hasn't | |
693 * already been freed by the video driver. What do we do in | |
694 * that case? Should we call SDL_VideoInit() again? | |
695 */ | |
696 SDL_VideoSurface = (mode != NULL) ? mode : prev_mode; | |
697 | |
698 if ( (mode != NULL) && (!is_opengl) ) { | |
699 /* Sanity check */ | |
700 if ( (mode->w < width) || (mode->h < height) ) { | |
701 SDL_SetError("Video mode smaller than requested"); | |
702 return(NULL); | |
703 } | |
704 | |
705 /* If we have a palettized surface, create a default palette */ | |
706 if ( mode->format->palette ) { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
707 SDL_PixelFormat *vf = mode->format; |
0 | 708 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel); |
709 video->SetColors(this, 0, vf->palette->ncolors, | |
710 vf->palette->colors); | |
711 } | |
712 | |
713 /* Clear the surface to black */ | |
714 video->offset_x = 0; | |
715 video->offset_y = 0; | |
716 mode->offset = 0; | |
717 SDL_SetClipRect(mode, NULL); | |
718 SDL_ClearSurface(mode); | |
719 | |
720 /* Now adjust the offsets to match the desired mode */ | |
721 video->offset_x = (mode->w-width)/2; | |
722 video->offset_y = (mode->h-height)/2; | |
723 mode->offset = video->offset_y*mode->pitch + | |
724 video->offset_x*mode->format->BytesPerPixel; | |
725 #ifdef DEBUG_VIDEO | |
726 fprintf(stderr, | |
727 "Requested mode: %dx%dx%d, obtained mode %dx%dx%d (offset %d)\n", | |
728 width, height, bpp, | |
729 mode->w, mode->h, mode->format->BitsPerPixel, mode->offset); | |
730 #endif | |
731 mode->w = width; | |
732 mode->h = height; | |
733 SDL_SetClipRect(mode, NULL); | |
734 } | |
735 SDL_ResetCursor(); | |
736 SDL_UnlockCursor(); | |
737 | |
738 /* If we failed setting a video mode, return NULL... (Uh Oh!) */ | |
739 if ( mode == NULL ) { | |
740 return(NULL); | |
741 } | |
742 | |
743 /* If there is no window manager, set the SDL_NOFRAME flag */ | |
744 if ( ! video->info.wm_available ) { | |
745 mode->flags |= SDL_NOFRAME; | |
746 } | |
747 | |
748 /* Reset the mouse cursor and grab for new video mode */ | |
749 SDL_SetCursor(NULL); | |
750 if ( video->UpdateMouse ) { | |
751 video->UpdateMouse(this); | |
752 } | |
753 SDL_WM_GrabInput(saved_grab); | |
754 SDL_GetRelativeMouseState(NULL, NULL); /* Clear first large delta */ | |
755 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
756 #if SDL_VIDEO_OPENGL |
650
fe445b59d307
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
Ryan C. Gordon <icculus@icculus.org>
parents:
630
diff
changeset
|
757 /* Load GL symbols (before MakeCurrent, where we need glGetString). */ |
1658 | 758 if ( flags & SDL_INTERNALOPENGL ) { |
910
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
759 |
1032
c1c2efca4548
Date: Mon, 24 Jan 2005 21:37:56 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
989
diff
changeset
|
760 #if defined(__QNXNTO__) && (_NTO_VERSION < 630) |
916
46916168361d
Date: Sun, 25 Jul 2004 23:10:03 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
910
diff
changeset
|
761 #define __SDL_NOGETPROCADDR__ |
989
475166d13b44
Factorize OSMesa OpenGL code for Atari drivers
Patrice Mandin <patmandin@gmail.com>
parents:
944
diff
changeset
|
762 #elif defined(__MINT__) |
475166d13b44
Factorize OSMesa OpenGL code for Atari drivers
Patrice Mandin <patmandin@gmail.com>
parents:
944
diff
changeset
|
763 #define __SDL_NOGETPROCADDR__ |
916
46916168361d
Date: Sun, 25 Jul 2004 23:10:03 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
910
diff
changeset
|
764 #endif |
910
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
765 #ifdef __SDL_NOGETPROCADDR__ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
766 #define SDL_PROC(ret,func,params) video->func=func; |
663
8bedd6d61642
Date: Sat, 2 Aug 2003 16:22:51 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
662
diff
changeset
|
767 #else |
910
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
768 #define SDL_PROC(ret,func,params) \ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
769 do { \ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
770 video->func = SDL_GL_GetProcAddress(#func); \ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
771 if ( ! video->func ) { \ |
1141
fe1fa56dcbc6
If couldn't load a needed GL symbol in SDL_SetVideoMode(), report it more
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
772 SDL_SetError("Couldn't load GL function %s: %s\n", #func, SDL_GetError()); \ |
910
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
773 return(NULL); \ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
774 } \ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
775 } while ( 0 ); |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
776 |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
777 #endif /* __SDL_NOGETPROCADDR__ */ |
4ab6d1fd028f
Date: Sat, 26 Jun 2004 14:58:42 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
883
diff
changeset
|
778 |
650
fe445b59d307
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
Ryan C. Gordon <icculus@icculus.org>
parents:
630
diff
changeset
|
779 #include "SDL_glfuncs.h" |
fe445b59d307
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
Ryan C. Gordon <icculus@icculus.org>
parents:
630
diff
changeset
|
780 #undef SDL_PROC |
fe445b59d307
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
Ryan C. Gordon <icculus@icculus.org>
parents:
630
diff
changeset
|
781 } |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
782 #endif /* SDL_VIDEO_OPENGL */ |
650
fe445b59d307
We need to lookup the address of glGetString before calling GL_MakeCurrent(),
Ryan C. Gordon <icculus@icculus.org>
parents:
630
diff
changeset
|
783 |
0 | 784 /* If we're running OpenGL, make the context current */ |
1658 | 785 if ( (video->screen->flags & SDL_INTERNALOPENGL) && |
0 | 786 video->GL_MakeCurrent ) { |
787 if ( video->GL_MakeCurrent(this) < 0 ) { | |
788 return(NULL); | |
789 } | |
790 } | |
791 | |
792 /* Create a shadow surface if necessary */ | |
793 /* There are three conditions under which we create a shadow surface: | |
794 1. We need a particular bits-per-pixel that we didn't get. | |
795 2. We need a hardware palette and didn't get one. | |
796 3. We need a software surface and got a hardware surface. | |
797 */ | |
798 if ( !(SDL_VideoSurface->flags & SDL_OPENGL) && | |
799 ( | |
800 ( !(flags&SDL_ANYFORMAT) && | |
801 (SDL_VideoSurface->format->BitsPerPixel != bpp)) || | |
802 ( (flags&SDL_HWPALETTE) && | |
803 !(SDL_VideoSurface->flags&SDL_HWPALETTE)) || | |
804 /* If the surface is in hardware, video writes are visible | |
805 as soon as they are performed, so we need to buffer them | |
806 */ | |
807 ( ((flags&SDL_HWSURFACE) == SDL_SWSURFACE) && | |
580
be6495850a62
If a double-buffered surface was requested, and a plain hardware surface
Sam Lantinga <slouken@libsdl.org>
parents:
567
diff
changeset
|
808 (SDL_VideoSurface->flags&SDL_HWSURFACE)) || |
be6495850a62
If a double-buffered surface was requested, and a plain hardware surface
Sam Lantinga <slouken@libsdl.org>
parents:
567
diff
changeset
|
809 ( (flags&SDL_DOUBLEBUF) && |
be6495850a62
If a double-buffered surface was requested, and a plain hardware surface
Sam Lantinga <slouken@libsdl.org>
parents:
567
diff
changeset
|
810 (SDL_VideoSurface->flags&SDL_HWSURFACE) && |
be6495850a62
If a double-buffered surface was requested, and a plain hardware surface
Sam Lantinga <slouken@libsdl.org>
parents:
567
diff
changeset
|
811 !(SDL_VideoSurface->flags&SDL_DOUBLEBUF)) |
0 | 812 ) ) { |
813 SDL_CreateShadowSurface(bpp); | |
814 if ( SDL_ShadowSurface == NULL ) { | |
815 SDL_SetError("Couldn't create shadow surface"); | |
816 return(NULL); | |
817 } | |
818 SDL_PublicSurface = SDL_ShadowSurface; | |
819 } else { | |
820 SDL_PublicSurface = SDL_VideoSurface; | |
821 } | |
822 video->info.vfmt = SDL_VideoSurface->format; | |
1545
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
823 video->info.current_w = SDL_VideoSurface->w; |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1491
diff
changeset
|
824 video->info.current_h = SDL_VideoSurface->h; |
0 | 825 |
826 /* We're done! */ | |
827 return(SDL_PublicSurface); | |
828 } | |
829 | |
830 /* | |
831 * Convert a surface into the video pixel format. | |
832 */ | |
833 SDL_Surface * SDL_DisplayFormat (SDL_Surface *surface) | |
834 { | |
835 Uint32 flags; | |
836 | |
837 if ( ! SDL_PublicSurface ) { | |
838 SDL_SetError("No video mode has been set"); | |
839 return(NULL); | |
840 } | |
841 /* Set the flags appropriate for copying to display surface */ | |
313
67ad846ed21c
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
306
diff
changeset
|
842 if (((SDL_PublicSurface->flags&SDL_HWSURFACE) == SDL_HWSURFACE) && current_video->info.blit_hw) |
306
3879bed3395c
Only put surfaces in video memory if there are accelerated blits
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
843 flags = SDL_HWSURFACE; |
3879bed3395c
Only put surfaces in video memory if there are accelerated blits
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
844 else |
3879bed3395c
Only put surfaces in video memory if there are accelerated blits
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
845 flags = SDL_SWSURFACE; |
0 | 846 #ifdef AUTORLE_DISPLAYFORMAT |
847 flags |= (surface->flags & (SDL_SRCCOLORKEY|SDL_SRCALPHA)); | |
848 flags |= SDL_RLEACCELOK; | |
849 #else | |
850 flags |= surface->flags & (SDL_SRCCOLORKEY|SDL_SRCALPHA|SDL_RLEACCELOK); | |
851 #endif | |
852 return(SDL_ConvertSurface(surface, SDL_PublicSurface->format, flags)); | |
853 } | |
854 | |
855 /* | |
856 * Convert a surface into a format that's suitable for blitting to | |
857 * the screen, but including an alpha channel. | |
858 */ | |
859 SDL_Surface *SDL_DisplayFormatAlpha(SDL_Surface *surface) | |
860 { | |
861 SDL_PixelFormat *vf; | |
862 SDL_PixelFormat *format; | |
863 SDL_Surface *converted; | |
864 Uint32 flags; | |
865 /* default to ARGB8888 */ | |
866 Uint32 amask = 0xff000000; | |
867 Uint32 rmask = 0x00ff0000; | |
868 Uint32 gmask = 0x0000ff00; | |
869 Uint32 bmask = 0x000000ff; | |
870 | |
871 if ( ! SDL_PublicSurface ) { | |
872 SDL_SetError("No video mode has been set"); | |
873 return(NULL); | |
874 } | |
875 vf = SDL_PublicSurface->format; | |
876 | |
877 switch(vf->BytesPerPixel) { | |
878 case 2: | |
879 /* For XGY5[56]5, use, AXGY8888, where {X, Y} = {R, B}. | |
880 For anything else (like ARGB4444) it doesn't matter | |
881 since we have no special code for it anyway */ | |
882 if ( (vf->Rmask == 0x1f) && | |
883 (vf->Bmask == 0xf800 || vf->Bmask == 0x7c00)) { | |
884 rmask = 0xff; | |
885 bmask = 0xff0000; | |
886 } | |
887 break; | |
888 | |
889 case 3: | |
890 case 4: | |
891 /* Keep the video format, as long as the high 8 bits are | |
892 unused or alpha */ | |
893 if ( (vf->Rmask == 0xff) && (vf->Bmask == 0xff0000) ) { | |
894 rmask = 0xff; | |
895 bmask = 0xff0000; | |
896 } | |
897 break; | |
898 | |
899 default: | |
900 /* We have no other optimised formats right now. When/if a new | |
901 optimised alpha format is written, add the converter here */ | |
902 break; | |
903 } | |
904 format = SDL_AllocFormat(32, rmask, gmask, bmask, amask); | |
905 flags = SDL_PublicSurface->flags & SDL_HWSURFACE; | |
906 flags |= surface->flags & (SDL_SRCALPHA | SDL_RLEACCELOK); | |
907 converted = SDL_ConvertSurface(surface, format, flags); | |
908 SDL_FreeFormat(format); | |
909 return(converted); | |
910 } | |
911 | |
912 /* | |
913 * Update a specific portion of the physical screen | |
914 */ | |
915 void SDL_UpdateRect(SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h) | |
916 { | |
917 if ( screen ) { | |
918 SDL_Rect rect; | |
919 | |
920 /* Perform some checking */ | |
921 if ( w == 0 ) | |
922 w = screen->w; | |
923 if ( h == 0 ) | |
924 h = screen->h; | |
925 if ( (int)(x+w) > screen->w ) | |
926 return; | |
927 if ( (int)(y+h) > screen->h ) | |
928 return; | |
929 | |
930 /* Fill the rectangle */ | |
1428
5f52867ba65c
Update for Visual C++ 6.0
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
931 rect.x = (Sint16)x; |
5f52867ba65c
Update for Visual C++ 6.0
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
932 rect.y = (Sint16)y; |
5f52867ba65c
Update for Visual C++ 6.0
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
933 rect.w = (Uint16)w; |
5f52867ba65c
Update for Visual C++ 6.0
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
934 rect.h = (Uint16)h; |
0 | 935 SDL_UpdateRects(screen, 1, &rect); |
936 } | |
937 } | |
938 void SDL_UpdateRects (SDL_Surface *screen, int numrects, SDL_Rect *rects) | |
939 { | |
940 int i; | |
941 SDL_VideoDevice *video = current_video; | |
942 SDL_VideoDevice *this = current_video; | |
943 | |
1655
59227394023d
SDL_OPENGLBLIT is really gone...
Sam Lantinga <slouken@libsdl.org>
parents:
1654
diff
changeset
|
944 if ( screen->flags & SDL_OPENGL ) { |
1491
cf23b92602aa
Don't crash if SDL_Flip() is called with an OpenGL mode set
Sam Lantinga <slouken@libsdl.org>
parents:
1428
diff
changeset
|
945 SDL_SetError("OpenGL active, use SDL_GL_SwapBuffers()"); |
cf23b92602aa
Don't crash if SDL_Flip() is called with an OpenGL mode set
Sam Lantinga <slouken@libsdl.org>
parents:
1428
diff
changeset
|
946 return; |
cf23b92602aa
Don't crash if SDL_Flip() is called with an OpenGL mode set
Sam Lantinga <slouken@libsdl.org>
parents:
1428
diff
changeset
|
947 } |
0 | 948 if ( screen == SDL_ShadowSurface ) { |
949 /* Blit the shadow surface using saved mapping */ | |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
950 SDL_Palette *pal = screen->format->palette; |
0 | 951 SDL_Color *saved_colors = NULL; |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
952 if ( pal && !(SDL_VideoSurface->flags & SDL_HWPALETTE) ) { |
0 | 953 /* simulated 8bpp, use correct physical palette */ |
954 saved_colors = pal->colors; | |
955 if ( video->gammacols ) { | |
956 /* gamma-corrected palette */ | |
957 pal->colors = video->gammacols; | |
958 } else if ( video->physpal ) { | |
959 /* physical palette different from logical */ | |
960 pal->colors = video->physpal->colors; | |
961 } | |
962 } | |
963 if ( SHOULD_DRAWCURSOR(SDL_cursorstate) ) { | |
964 SDL_LockCursor(); | |
965 SDL_DrawCursor(SDL_ShadowSurface); | |
966 for ( i=0; i<numrects; ++i ) { | |
967 SDL_LowerBlit(SDL_ShadowSurface, &rects[i], | |
968 SDL_VideoSurface, &rects[i]); | |
969 } | |
970 SDL_EraseCursor(SDL_ShadowSurface); | |
971 SDL_UnlockCursor(); | |
972 } else { | |
973 for ( i=0; i<numrects; ++i ) { | |
974 SDL_LowerBlit(SDL_ShadowSurface, &rects[i], | |
975 SDL_VideoSurface, &rects[i]); | |
976 } | |
977 } | |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
978 if ( saved_colors ) { |
0 | 979 pal->colors = saved_colors; |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
980 } |
0 | 981 |
982 /* Fall through to video surface update */ | |
983 screen = SDL_VideoSurface; | |
984 } | |
985 if ( screen == SDL_VideoSurface ) { | |
986 /* Update the video surface */ | |
987 if ( screen->offset ) { | |
988 for ( i=0; i<numrects; ++i ) { | |
989 rects[i].x += video->offset_x; | |
990 rects[i].y += video->offset_y; | |
991 } | |
992 video->UpdateRects(this, numrects, rects); | |
993 for ( i=0; i<numrects; ++i ) { | |
994 rects[i].x -= video->offset_x; | |
995 rects[i].y -= video->offset_y; | |
996 } | |
997 } else { | |
998 video->UpdateRects(this, numrects, rects); | |
999 } | |
1000 } | |
1001 } | |
1002 | |
1003 /* | |
1004 * Performs hardware double buffering, if possible, or a full update if not. | |
1005 */ | |
1006 int SDL_Flip(SDL_Surface *screen) | |
1007 { | |
1008 SDL_VideoDevice *video = current_video; | |
1009 /* Copy the shadow surface to the video surface */ | |
1010 if ( screen == SDL_ShadowSurface ) { | |
1011 SDL_Rect rect; | |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1012 SDL_Palette *pal = screen->format->palette; |
0 | 1013 SDL_Color *saved_colors = NULL; |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1014 if ( pal && !(SDL_VideoSurface->flags & SDL_HWPALETTE) ) { |
0 | 1015 /* simulated 8bpp, use correct physical palette */ |
1016 saved_colors = pal->colors; | |
1017 if ( video->gammacols ) { | |
1018 /* gamma-corrected palette */ | |
1019 pal->colors = video->gammacols; | |
1020 } else if ( video->physpal ) { | |
1021 /* physical palette different from logical */ | |
1022 pal->colors = video->physpal->colors; | |
1023 } | |
1024 } | |
1025 | |
1026 rect.x = 0; | |
1027 rect.y = 0; | |
1028 rect.w = screen->w; | |
1029 rect.h = screen->h; | |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1030 if ( SHOULD_DRAWCURSOR(SDL_cursorstate) ) { |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1031 SDL_LockCursor(); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1032 SDL_DrawCursor(SDL_ShadowSurface); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1033 SDL_LowerBlit(SDL_ShadowSurface, &rect, |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1034 SDL_VideoSurface, &rect); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1035 SDL_EraseCursor(SDL_ShadowSurface); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1036 SDL_UnlockCursor(); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1037 } else { |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1038 SDL_LowerBlit(SDL_ShadowSurface, &rect, |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1039 SDL_VideoSurface, &rect); |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1040 } |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1041 if ( saved_colors ) { |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1042 pal->colors = saved_colors; |
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1043 } |
0 | 1044 |
488
0a111805b53a
Fixed missing cursor after shadow buffer flip (thanks Jan!)
Sam Lantinga <slouken@libsdl.org>
parents:
460
diff
changeset
|
1045 /* Fall through to video surface update */ |
0 | 1046 screen = SDL_VideoSurface; |
1047 } | |
1048 if ( (screen->flags & SDL_DOUBLEBUF) == SDL_DOUBLEBUF ) { | |
1049 SDL_VideoDevice *this = current_video; | |
1050 return(video->FlipHWSurface(this, SDL_VideoSurface)); | |
1051 } else { | |
1052 SDL_UpdateRect(screen, 0, 0, 0, 0); | |
1053 } | |
1054 return(0); | |
1055 } | |
1056 | |
1057 static void SetPalette_logical(SDL_Surface *screen, SDL_Color *colors, | |
1058 int firstcolor, int ncolors) | |
1059 { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1060 SDL_Palette *pal = screen->format->palette; |
0 | 1061 SDL_Palette *vidpal; |
1062 | |
1063 if ( colors != (pal->colors + firstcolor) ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1064 SDL_memcpy(pal->colors + firstcolor, colors, |
0 | 1065 ncolors * sizeof(*colors)); |
1066 } | |
1067 | |
1068 vidpal = SDL_VideoSurface->format->palette; | |
1069 if ( (screen == SDL_ShadowSurface) && vidpal ) { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1070 /* |
0 | 1071 * This is a shadow surface, and the physical |
1072 * framebuffer is also indexed. Propagate the | |
1073 * changes to its logical palette so that | |
1074 * updates are always identity blits | |
1075 */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1076 SDL_memcpy(vidpal->colors + firstcolor, colors, |
0 | 1077 ncolors * sizeof(*colors)); |
1078 } | |
1079 SDL_FormatChanged(screen); | |
1080 } | |
1081 | |
1082 static int SetPalette_physical(SDL_Surface *screen, | |
1083 SDL_Color *colors, int firstcolor, int ncolors) | |
1084 { | |
1085 SDL_VideoDevice *video = current_video; | |
1086 int gotall = 1; | |
1087 | |
1088 if ( video->physpal ) { | |
1089 /* We need to copy the new colors, since we haven't | |
1090 * already done the copy in the logical set above. | |
1091 */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1092 SDL_memcpy(video->physpal->colors + firstcolor, |
0 | 1093 colors, ncolors * sizeof(*colors)); |
1094 } | |
1095 if ( screen == SDL_ShadowSurface ) { | |
1096 if ( SDL_VideoSurface->flags & SDL_HWPALETTE ) { | |
1097 /* | |
1098 * The real screen is also indexed - set its physical | |
1099 * palette. The physical palette does not include the | |
1100 * gamma modification, we apply it directly instead, | |
1101 * but this only happens if we have hardware palette. | |
1102 */ | |
1103 screen = SDL_VideoSurface; | |
1104 } else { | |
1105 /* | |
1106 * The video surface is not indexed - invalidate any | |
1107 * active shadow-to-video blit mappings. | |
1108 */ | |
1109 if ( screen->map->dst == SDL_VideoSurface ) { | |
1110 SDL_InvalidateMap(screen->map); | |
1111 } | |
1112 if ( video->gamma ) { | |
1113 if( ! video->gammacols ) { | |
1114 SDL_Palette *pp = video->physpal; | |
1115 if(!pp) | |
1116 pp = screen->format->palette; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1117 video->gammacols = SDL_malloc(pp->ncolors |
0 | 1118 * sizeof(SDL_Color)); |
1119 SDL_ApplyGamma(video->gamma, | |
1120 pp->colors, | |
1121 video->gammacols, | |
1122 pp->ncolors); | |
1123 } else { | |
1124 SDL_ApplyGamma(video->gamma, colors, | |
1125 video->gammacols | |
1126 + firstcolor, | |
1127 ncolors); | |
1128 } | |
1129 } | |
1130 SDL_UpdateRect(screen, 0, 0, 0, 0); | |
1131 } | |
1132 } | |
1133 | |
1134 if ( screen == SDL_VideoSurface ) { | |
1135 SDL_Color gcolors[256]; | |
1136 | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1137 if ( video->gamma ) { |
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1138 SDL_ApplyGamma(video->gamma, colors, gcolors, ncolors); |
0 | 1139 colors = gcolors; |
1140 } | |
1141 gotall = video->SetColors(video, firstcolor, ncolors, colors); | |
1142 if ( ! gotall ) { | |
1143 /* The video flags shouldn't have SDL_HWPALETTE, and | |
1144 the video driver is responsible for copying back the | |
1145 correct colors into the video surface palette. | |
1146 */ | |
1147 ; | |
1148 } | |
1149 SDL_CursorPaletteChanged(); | |
1150 } | |
1151 return gotall; | |
1152 } | |
1153 | |
1154 /* | |
1155 * Set the physical and/or logical colormap of a surface: | |
1156 * Only the screen has a physical colormap. It determines what is actually | |
1157 * sent to the display. | |
1158 * The logical colormap is used to map blits to/from the surface. | |
1159 * 'which' is one or both of SDL_LOGPAL, SDL_PHYSPAL | |
1160 * | |
1161 * Return nonzero if all colours were set as requested, or 0 otherwise. | |
1162 */ | |
1163 int SDL_SetPalette(SDL_Surface *screen, int which, | |
1164 SDL_Color *colors, int firstcolor, int ncolors) | |
1165 { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1166 SDL_Palette *pal; |
0 | 1167 int gotall; |
1168 int palsize; | |
1169 | |
34 | 1170 if ( ! current_video ) { |
1171 return 0; | |
1172 } | |
0 | 1173 if ( screen != SDL_PublicSurface ) { |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1174 /* only screens have physical palettes */ |
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1175 which &= ~SDL_PHYSPAL; |
0 | 1176 } else if( (screen->flags & SDL_HWPALETTE) != SDL_HWPALETTE ) { |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1177 /* hardware palettes required for split colormaps */ |
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1178 which |= SDL_PHYSPAL | SDL_LOGPAL; |
0 | 1179 } |
1180 | |
1181 /* Verify the parameters */ | |
1182 pal = screen->format->palette; | |
1183 if( !pal ) { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1184 return 0; /* not a palettized surface */ |
0 | 1185 } |
1186 gotall = 1; | |
1187 palsize = 1 << screen->format->BitsPerPixel; | |
1188 if ( ncolors > (palsize - firstcolor) ) { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1189 ncolors = (palsize - firstcolor); |
0 | 1190 gotall = 0; |
1191 } | |
1192 | |
1193 if ( which & SDL_LOGPAL ) { | |
1194 /* | |
1195 * Logical palette change: The actual screen isn't affected, | |
1196 * but the internal colormap is altered so that the | |
1197 * interpretation of the pixel values (for blits etc) is | |
1198 * changed. | |
1199 */ | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1200 SetPalette_logical(screen, colors, firstcolor, ncolors); |
0 | 1201 } |
1202 if ( which & SDL_PHYSPAL ) { | |
1203 SDL_VideoDevice *video = current_video; | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1204 /* |
0 | 1205 * Physical palette change: This doesn't affect the |
1206 * program's idea of what the screen looks like, but changes | |
1207 * its actual appearance. | |
1208 */ | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1209 if(!video) |
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1210 return gotall; /* video not yet initialized */ |
0 | 1211 if(!video->physpal && !(which & SDL_LOGPAL) ) { |
1212 /* Lazy physical palette allocation */ | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1213 int size; |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1214 SDL_Palette *pp = SDL_malloc(sizeof(*pp)); |
944
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1215 if ( !pp ) { |
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1216 return 0; |
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1217 } |
0 | 1218 current_video->physpal = pp; |
1219 pp->ncolors = pal->ncolors; | |
1220 size = pp->ncolors * sizeof(SDL_Color); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1221 pp->colors = SDL_malloc(size); |
944
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1222 if ( !pp->colors ) { |
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1223 return 0; |
cdea7cbc3e23
Date: Wed, 28 Jul 2004 14:56:57 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
916
diff
changeset
|
1224 } |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1225 SDL_memcpy(pp->colors, pal->colors, size); |
0 | 1226 } |
1227 if ( ! SetPalette_physical(screen, | |
1228 colors, firstcolor, ncolors) ) { | |
1229 gotall = 0; | |
1230 } | |
1231 } | |
1232 return gotall; | |
1233 } | |
1234 | |
1235 int SDL_SetColors(SDL_Surface *screen, SDL_Color *colors, int firstcolor, | |
1236 int ncolors) | |
1237 { | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1238 return SDL_SetPalette(screen, SDL_LOGPAL | SDL_PHYSPAL, |
0 | 1239 colors, firstcolor, ncolors); |
1240 } | |
1241 | |
1242 /* | |
1243 * Clean up the video subsystem | |
1244 */ | |
1245 void SDL_VideoQuit (void) | |
1246 { | |
1247 SDL_Surface *ready_to_go; | |
1248 | |
1249 if ( current_video ) { | |
1250 SDL_VideoDevice *video = current_video; | |
1251 SDL_VideoDevice *this = current_video; | |
1252 | |
1253 /* Halt event processing before doing anything else */ | |
1254 SDL_StopEventLoop(); | |
1255 | |
1256 /* Clean up allocated window manager items */ | |
1257 if ( SDL_PublicSurface ) { | |
1258 SDL_PublicSurface = NULL; | |
1259 } | |
1260 SDL_CursorQuit(); | |
1261 | |
1262 /* Just in case... */ | |
1263 SDL_WM_GrabInputOff(); | |
1264 | |
1265 /* Clean up the system video */ | |
1266 video->VideoQuit(this); | |
1267 | |
1268 /* Free any lingering surfaces */ | |
1269 ready_to_go = SDL_ShadowSurface; | |
1270 SDL_ShadowSurface = NULL; | |
1271 SDL_FreeSurface(ready_to_go); | |
1272 if ( SDL_VideoSurface != NULL ) { | |
1273 ready_to_go = SDL_VideoSurface; | |
1274 SDL_VideoSurface = NULL; | |
1275 SDL_FreeSurface(ready_to_go); | |
1276 } | |
1277 SDL_PublicSurface = NULL; | |
1278 | |
1279 /* Clean up miscellaneous memory */ | |
1280 if ( video->physpal ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1281 SDL_free(video->physpal->colors); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1282 SDL_free(video->physpal); |
0 | 1283 video->physpal = NULL; |
1284 } | |
1285 if ( video->gammacols ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1286 SDL_free(video->gammacols); |
0 | 1287 video->gammacols = NULL; |
1288 } | |
1289 if ( video->gamma ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1290 SDL_free(video->gamma); |
0 | 1291 video->gamma = NULL; |
1292 } | |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1293 if ( video->wm_title != NULL ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1294 SDL_free(video->wm_title); |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1295 video->wm_title = NULL; |
0 | 1296 } |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1297 if ( video->wm_icon != NULL ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1298 SDL_free(video->wm_icon); |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1299 video->wm_icon = NULL; |
0 | 1300 } |
1301 | |
1302 /* Finish cleaning up video subsystem */ | |
1303 video->free(this); | |
1304 current_video = NULL; | |
1305 } | |
1306 return; | |
1307 } | |
1308 | |
1309 /* Load the GL driver library */ | |
1310 int SDL_GL_LoadLibrary(const char *path) | |
1311 { | |
1312 SDL_VideoDevice *video = current_video; | |
1313 SDL_VideoDevice *this = current_video; | |
1314 int retval; | |
1315 | |
1316 retval = -1; | |
423
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1317 if ( video == NULL ) { |
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1318 SDL_SetError("Video subsystem has not been initialized"); |
0 | 1319 } else { |
423
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1320 if ( video->GL_LoadLibrary ) { |
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1321 retval = video->GL_LoadLibrary(this, path); |
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1322 } else { |
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1323 SDL_SetError("No dynamic GL support in video driver"); |
d1565c52ded5
More correct error reported when calling SDL_GL_LoadLibrary() without
Ryan C. Gordon <icculus@icculus.org>
parents:
371
diff
changeset
|
1324 } |
0 | 1325 } |
1326 return(retval); | |
1327 } | |
1328 | |
1329 void *SDL_GL_GetProcAddress(const char* proc) | |
1330 { | |
1331 SDL_VideoDevice *video = current_video; | |
1332 SDL_VideoDevice *this = current_video; | |
1333 void *func; | |
1334 | |
1335 func = NULL; | |
1336 if ( video->GL_GetProcAddress ) { | |
1337 if ( video->gl_config.driver_loaded ) { | |
1338 func = video->GL_GetProcAddress(this, proc); | |
1339 } else { | |
1340 SDL_SetError("No GL driver has been loaded"); | |
1341 } | |
1342 } else { | |
1343 SDL_SetError("No dynamic GL support in video driver"); | |
1344 } | |
1345 return func; | |
1346 } | |
1347 | |
1348 /* Set the specified GL attribute for setting up a GL video mode */ | |
1349 int SDL_GL_SetAttribute( SDL_GLattr attr, int value ) | |
1350 { | |
1351 int retval; | |
1352 SDL_VideoDevice *video = current_video; | |
1353 | |
1354 retval = 0; | |
1355 switch (attr) { | |
1356 case SDL_GL_RED_SIZE: | |
1357 video->gl_config.red_size = value; | |
1358 break; | |
1359 case SDL_GL_GREEN_SIZE: | |
1360 video->gl_config.green_size = value; | |
1361 break; | |
1362 case SDL_GL_BLUE_SIZE: | |
1363 video->gl_config.blue_size = value; | |
1364 break; | |
1365 case SDL_GL_ALPHA_SIZE: | |
1366 video->gl_config.alpha_size = value; | |
1367 break; | |
1368 case SDL_GL_DOUBLEBUFFER: | |
1369 video->gl_config.double_buffer = value; | |
1370 break; | |
662
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1371 case SDL_GL_BUFFER_SIZE: |
66c02f83f5bf
Date: Sun, 27 Jul 2003 22:37:59 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
1372 video->gl_config.buffer_size = value; |
0 | 1373 break; |
1374 case SDL_GL_DEPTH_SIZE: | |
1375 video->gl_config.depth_size = value; | |
1376 break; | |
1377 case SDL_GL_STENCIL_SIZE: | |
1378 video->gl_config.stencil_size = value; | |
1379 break; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1380 case SDL_GL_ACCUM_RED_SIZE: |
0 | 1381 video->gl_config.accum_red_size = value; |
1382 break; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1383 case SDL_GL_ACCUM_GREEN_SIZE: |
0 | 1384 video->gl_config.accum_green_size = value; |
1385 break; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1386 case SDL_GL_ACCUM_BLUE_SIZE: |
0 | 1387 video->gl_config.accum_blue_size = value; |
1388 break; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1389 case SDL_GL_ACCUM_ALPHA_SIZE: |
0 | 1390 video->gl_config.accum_alpha_size = value; |
1391 break; | |
450
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1392 case SDL_GL_STEREO: |
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1393 video->gl_config.stereo = value; |
8a43e0cbf02f
Added SDL_GL_STEREO for stereoscopic OpenGL contexts
Sam Lantinga <slouken@libsdl.org>
parents:
433
diff
changeset
|
1394 break; |
656
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
1395 case SDL_GL_MULTISAMPLEBUFFERS: |
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
1396 video->gl_config.multisamplebuffers = value; |
655
9c42ee1b7d77
Date: Thu, 24 Apr 2003 15:13:47 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
650
diff
changeset
|
1397 break; |
656
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
1398 case SDL_GL_MULTISAMPLESAMPLES: |
864e2d2a9a55
Merged in Ryan's multisample code for MacOS, and changed the constants to match.
Sam Lantinga <slouken@libsdl.org>
parents:
655
diff
changeset
|
1399 video->gl_config.multisamplesamples = value; |
655
9c42ee1b7d77
Date: Thu, 24 Apr 2003 15:13:47 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
650
diff
changeset
|
1400 break; |
1656 | 1401 case SDL_GL_ACCELERATED_VISUAL: |
1402 video->gl_config.accelerated = value; | |
1403 break; | |
1404 case SDL_GL_SWAP_CONTROL: | |
1405 video->gl_config.swap_control = value; | |
1406 break; | |
0 | 1407 default: |
1408 SDL_SetError("Unknown OpenGL attribute"); | |
1409 retval = -1; | |
1410 break; | |
1411 } | |
1412 return(retval); | |
1413 } | |
1414 | |
1415 /* Retrieve an attribute value from the windowing system. */ | |
1416 int SDL_GL_GetAttribute(SDL_GLattr attr, int* value) | |
1417 { | |
1418 int retval = -1; | |
1419 SDL_VideoDevice* video = current_video; | |
1420 SDL_VideoDevice* this = current_video; | |
1421 | |
1422 if ( video->GL_GetAttribute ) { | |
1423 retval = this->GL_GetAttribute(this, attr, value); | |
11
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1424 } else { |
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1425 *value = 0; |
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1426 SDL_SetError("GL_GetAttribute not supported"); |
0 | 1427 } |
1428 return retval; | |
1429 } | |
1430 | |
1431 /* Perform a GL buffer swap on the current GL context */ | |
1432 void SDL_GL_SwapBuffers(void) | |
1433 { | |
1434 SDL_VideoDevice *video = current_video; | |
1435 SDL_VideoDevice *this = current_video; | |
1436 | |
1658 | 1437 if ( video->screen->flags & SDL_INTERNALOPENGL ) { |
266
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
1438 video->GL_SwapBuffers(this); |
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
1439 } else { |
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
1440 SDL_SetError("OpenGL video mode has not been set"); |
0 | 1441 } |
1442 } | |
1443 | |
1444 /* | |
1445 * Sets/Gets the title and icon text of the display window, if any. | |
1446 */ | |
1447 void SDL_WM_SetCaption (const char *title, const char *icon) | |
1448 { | |
1449 SDL_VideoDevice *video = current_video; | |
1450 SDL_VideoDevice *this = current_video; | |
1451 | |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1452 if ( video ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1453 if ( title ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1454 if ( video->wm_title ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1455 SDL_free(video->wm_title); |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1456 } |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
1457 video->wm_title = SDL_strdup(title); |
0 | 1458 } |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1459 if ( icon ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1460 if ( video->wm_icon ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1461 SDL_free(video->wm_icon); |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1462 } |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
1463 video->wm_icon = SDL_strdup(icon); |
0 | 1464 } |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1465 if ( (title || icon) && (video->SetCaption != NULL) ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1466 video->SetCaption(this, video->wm_title,video->wm_icon); |
0 | 1467 } |
1468 } | |
1469 } | |
1470 void SDL_WM_GetCaption (char **title, char **icon) | |
1471 { | |
58
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1472 SDL_VideoDevice *video = current_video; |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1473 |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1474 if ( video ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1475 if ( title ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1476 *title = video->wm_title; |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1477 } |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1478 if ( icon ) { |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1479 *icon = video->wm_icon; |
bd6b0a910a65
* Removed fullscreen menu option from the "Window" menu
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
1480 } |
0 | 1481 } |
1482 } | |
1483 | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1484 /* Utility function used by SDL_WM_SetIcon(); |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1485 * flags & 1 for color key, flags & 2 for alpha channel. */ |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1486 static void CreateMaskFromColorKeyOrAlpha(SDL_Surface *icon, Uint8 *mask, int flags) |
0 | 1487 { |
1488 int x, y; | |
1489 Uint32 colorkey; | |
1490 #define SET_MASKBIT(icon, x, y, mask) \ | |
1491 mask[(y*((icon->w+7)/8))+(x/8)] &= ~(0x01<<(7-(x%8))) | |
1492 | |
1493 colorkey = icon->format->colorkey; | |
1494 switch (icon->format->BytesPerPixel) { | |
1495 case 1: { Uint8 *pixels; | |
1496 for ( y=0; y<icon->h; ++y ) { | |
1497 pixels = (Uint8 *)icon->pixels + y*icon->pitch; | |
1498 for ( x=0; x<icon->w; ++x ) { | |
1499 if ( *pixels++ == colorkey ) { | |
1500 SET_MASKBIT(icon, x, y, mask); | |
1501 } | |
1502 } | |
1503 } | |
1504 } | |
1505 break; | |
1506 | |
1507 case 2: { Uint16 *pixels; | |
1508 for ( y=0; y<icon->h; ++y ) { | |
1509 pixels = (Uint16 *)icon->pixels + | |
1510 y*icon->pitch/2; | |
1511 for ( x=0; x<icon->w; ++x ) { | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1512 if ( (flags & 1) && *pixels == colorkey ) { |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1513 SET_MASKBIT(icon, x, y, mask); |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1514 } else if((flags & 2) && (*pixels & icon->format->Amask) == 0) { |
0 | 1515 SET_MASKBIT(icon, x, y, mask); |
1516 } | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1517 pixels++; |
0 | 1518 } |
1519 } | |
1520 } | |
1521 break; | |
1522 | |
1523 case 4: { Uint32 *pixels; | |
1524 for ( y=0; y<icon->h; ++y ) { | |
1525 pixels = (Uint32 *)icon->pixels + | |
1526 y*icon->pitch/4; | |
1527 for ( x=0; x<icon->w; ++x ) { | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1528 if ( (flags & 1) && *pixels == colorkey ) { |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1529 SET_MASKBIT(icon, x, y, mask); |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1530 } else if((flags & 2) && (*pixels & icon->format->Amask) == 0) { |
0 | 1531 SET_MASKBIT(icon, x, y, mask); |
1532 } | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1533 pixels++; |
0 | 1534 } |
1535 } | |
1536 } | |
1537 break; | |
1538 } | |
1539 } | |
1540 | |
1541 /* | |
1542 * Sets the window manager icon for the display window. | |
1543 */ | |
1544 void SDL_WM_SetIcon (SDL_Surface *icon, Uint8 *mask) | |
1545 { | |
1546 SDL_VideoDevice *video = current_video; | |
1547 SDL_VideoDevice *this = current_video; | |
1548 | |
1549 if ( icon && video->SetIcon ) { | |
1550 /* Generate a mask if necessary, and create the icon! */ | |
1551 if ( mask == NULL ) { | |
1552 int mask_len = icon->h*(icon->w+7)/8; | |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1553 int flags = 0; |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1554 mask = (Uint8 *)SDL_malloc(mask_len); |
0 | 1555 if ( mask == NULL ) { |
1556 return; | |
1557 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1558 SDL_memset(mask, ~0, mask_len); |
541
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1559 if ( icon->flags & SDL_SRCCOLORKEY ) flags |= 1; |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1560 if ( icon->flags & SDL_SRCALPHA ) flags |= 2; |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1561 if( flags ) { |
796f2fe699be
Support 1-bit alpha on surfaces passed to SDL_WM_SetIcon() (thanks Glenn!)
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
1562 CreateMaskFromColorKeyOrAlpha(icon, mask, flags); |
0 | 1563 } |
1564 video->SetIcon(video, icon, mask); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1565 SDL_free(mask); |
0 | 1566 } else { |
1567 video->SetIcon(this, icon, mask); | |
1568 } | |
1569 } | |
1570 } | |
1571 | |
1572 /* | |
1573 * Grab or ungrab the keyboard and mouse input. | |
1574 * This function returns the final grab mode after calling the | |
1575 * driver dependent function. | |
1576 */ | |
1577 static SDL_GrabMode SDL_WM_GrabInputRaw(SDL_GrabMode mode) | |
1578 { | |
1579 SDL_VideoDevice *video = current_video; | |
1580 SDL_VideoDevice *this = current_video; | |
1581 | |
1582 /* Only do something if we have support for grabs */ | |
1583 if ( video->GrabInput == NULL ) { | |
1584 return(video->input_grab); | |
1585 } | |
1586 | |
1587 /* If the final grab mode if off, only then do we actually grab */ | |
1588 #ifdef DEBUG_GRAB | |
1589 printf("SDL_WM_GrabInputRaw(%d) ... ", mode); | |
1590 #endif | |
1591 if ( mode == SDL_GRAB_OFF ) { | |
1592 if ( video->input_grab != SDL_GRAB_OFF ) { | |
1593 mode = video->GrabInput(this, mode); | |
1594 } | |
1595 } else { | |
1596 if ( video->input_grab == SDL_GRAB_OFF ) { | |
1597 mode = video->GrabInput(this, mode); | |
1598 } | |
1599 } | |
1600 if ( mode != video->input_grab ) { | |
1601 video->input_grab = mode; | |
1602 if ( video->CheckMouseMode ) { | |
1603 video->CheckMouseMode(this); | |
1604 } | |
1605 } | |
1606 #ifdef DEBUG_GRAB | |
1607 printf("Final mode %d\n", video->input_grab); | |
1608 #endif | |
1609 | |
1610 /* Return the final grab state */ | |
1611 if ( mode >= SDL_GRAB_FULLSCREEN ) { | |
1612 mode -= SDL_GRAB_FULLSCREEN; | |
1613 } | |
1614 return(mode); | |
1615 } | |
1616 SDL_GrabMode SDL_WM_GrabInput(SDL_GrabMode mode) | |
1617 { | |
1618 SDL_VideoDevice *video = current_video; | |
1619 | |
11
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1620 /* If the video isn't initialized yet, we can't do anything */ |
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1621 if ( ! video ) { |
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1622 return SDL_GRAB_OFF; |
7b94b6379341
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
7
diff
changeset
|
1623 } |
0 | 1624 |
1625 /* Return the current mode on query */ | |
1626 if ( mode == SDL_GRAB_QUERY ) { | |
1627 mode = video->input_grab; | |
1628 if ( mode >= SDL_GRAB_FULLSCREEN ) { | |
1629 mode -= SDL_GRAB_FULLSCREEN; | |
1630 } | |
1631 return(mode); | |
1632 } | |
1633 | |
1634 #ifdef DEBUG_GRAB | |
1635 printf("SDL_WM_GrabInput(%d) ... ", mode); | |
1636 #endif | |
1637 /* If the video surface is fullscreen, we always grab */ | |
1638 if ( mode >= SDL_GRAB_FULLSCREEN ) { | |
1639 mode -= SDL_GRAB_FULLSCREEN; | |
1640 } | |
1641 if ( SDL_VideoSurface && (SDL_VideoSurface->flags & SDL_FULLSCREEN) ) { | |
1642 mode += SDL_GRAB_FULLSCREEN; | |
1643 } | |
1644 return(SDL_WM_GrabInputRaw(mode)); | |
1645 } | |
1646 static SDL_GrabMode SDL_WM_GrabInputOff(void) | |
1647 { | |
1648 SDL_GrabMode mode; | |
1649 | |
1650 /* First query the current grab state */ | |
1651 mode = SDL_WM_GrabInput(SDL_GRAB_QUERY); | |
1652 | |
1653 /* Now explicitly turn off input grab */ | |
1654 SDL_WM_GrabInputRaw(SDL_GRAB_OFF); | |
1655 | |
1656 /* Return the old state */ | |
1657 return(mode); | |
1658 } | |
1659 | |
1660 /* | |
1661 * Iconify the window in window managed environments. | |
1662 * A successful iconification will result in an SDL_APPACTIVE loss event. | |
1663 */ | |
1664 int SDL_WM_IconifyWindow(void) | |
1665 { | |
1666 SDL_VideoDevice *video = current_video; | |
1667 SDL_VideoDevice *this = current_video; | |
1668 int retval; | |
1669 | |
1670 retval = 0; | |
1671 if ( video->IconifyWindow ) { | |
1672 retval = video->IconifyWindow(this); | |
1673 } | |
1674 return(retval); | |
1675 } | |
1676 | |
1677 /* | |
1678 * Toggle fullscreen mode | |
1679 */ | |
1680 int SDL_WM_ToggleFullScreen(SDL_Surface *surface) | |
1681 { | |
1682 SDL_VideoDevice *video = current_video; | |
1683 SDL_VideoDevice *this = current_video; | |
1684 int toggled; | |
1685 | |
1686 toggled = 0; | |
1687 if ( SDL_PublicSurface && (surface == SDL_PublicSurface) && | |
1688 video->ToggleFullScreen ) { | |
1689 if ( surface->flags & SDL_FULLSCREEN ) { | |
1690 toggled = video->ToggleFullScreen(this, 0); | |
1691 if ( toggled ) { | |
1692 SDL_VideoSurface->flags &= ~SDL_FULLSCREEN; | |
1693 SDL_PublicSurface->flags &= ~SDL_FULLSCREEN; | |
1694 } | |
1695 } else { | |
1696 toggled = video->ToggleFullScreen(this, 1); | |
1697 if ( toggled ) { | |
1698 SDL_VideoSurface->flags |= SDL_FULLSCREEN; | |
1699 SDL_PublicSurface->flags |= SDL_FULLSCREEN; | |
1700 } | |
1701 } | |
1702 /* Double-check the grab state inside SDL_WM_GrabInput() */ | |
1703 if ( toggled ) { | |
1704 SDL_WM_GrabInput(video->input_grab); | |
1705 } | |
1706 } | |
1707 return(toggled); | |
1708 } | |
1709 | |
1710 /* | |
1711 * Get some platform dependent window manager information | |
1712 */ | |
1713 int SDL_GetWMInfo (SDL_SysWMinfo *info) | |
1714 { | |
1715 SDL_VideoDevice *video = current_video; | |
1716 SDL_VideoDevice *this = current_video; | |
1717 | |
1718 if ( video && video->GetWMInfo ) { | |
1719 return(video->GetWMInfo(this, info)); | |
1720 } else { | |
1721 return(0); | |
1722 } | |
1723 } |