Skip to content

Latest commit

 

History

History
318 lines (288 loc) · 8.13 KB

SDL_x11image.c

File metadata and controls

318 lines (288 loc) · 8.13 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
28
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
#include <stdlib.h>
Sep 4, 2001
Sep 4, 2001
29
#include <unistd.h>
Apr 26, 2001
Apr 26, 2001
30
31
32
#include "SDL_error.h"
#include "SDL_endian.h"
Aug 31, 2001
Aug 31, 2001
33
#include "SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "SDL_x11image_c.h"
#ifndef NO_SHARED_MEMORY
/* Shared memory information */
extern int XShmQueryExtension(Display *dpy); /* Not in X11 headers */
/* Shared memory error handler routine */
static int shm_error;
static int (*X_handler)(Display *, XErrorEvent *) = NULL;
static int shm_errhandler(Display *d, XErrorEvent *e)
{
if ( e->error_code == BadAccess ) {
Jan 18, 2002
Jan 18, 2002
47
shm_error = 1;
Apr 26, 2001
Apr 26, 2001
48
49
50
51
52
return(0);
} else
return(X_handler(d,e));
}
Jan 18, 2002
Jan 18, 2002
53
static void try_mitshm(_THIS, SDL_Surface *screen)
Apr 26, 2001
Apr 26, 2001
54
{
Jan 18, 2002
Jan 18, 2002
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
if(!use_mitshm)
return;
shminfo.shmid = shmget(IPC_PRIVATE, screen->h*screen->pitch,
IPC_CREAT | 0777);
if ( shminfo.shmid >= 0 ) {
shminfo.shmaddr = (char *)shmat(shminfo.shmid, 0, 0);
shminfo.readOnly = False;
if ( shminfo.shmaddr != (char *)-1 ) {
shm_error = False;
X_handler = XSetErrorHandler(shm_errhandler);
XShmAttach(SDL_Display, &shminfo);
XSync(SDL_Display, True);
XSetErrorHandler(X_handler);
if (shm_error)
shmdt(shminfo.shmaddr);
Apr 26, 2001
Apr 26, 2001
70
71
72
} else {
shm_error = True;
}
Jan 18, 2002
Jan 18, 2002
73
shmctl(shminfo.shmid, IPC_RMID, NULL);
Apr 26, 2001
Apr 26, 2001
74
} else {
Jan 18, 2002
Jan 18, 2002
75
shm_error = True;
Apr 26, 2001
Apr 26, 2001
76
}
Jan 18, 2002
Jan 18, 2002
77
78
79
80
81
82
if ( shm_error )
use_mitshm = 0;
if ( use_mitshm )
screen->pixels = shminfo.shmaddr;
}
#endif /* ! NO_SHARED_MEMORY */
Apr 26, 2001
Apr 26, 2001
83
Jan 18, 2002
Jan 18, 2002
84
85
86
87
88
89
90
91
92
/* Various screen update functions available */
static void X11_NormalUpdate(_THIS, int numrects, SDL_Rect *rects);
static void X11_MITSHMUpdate(_THIS, int numrects, SDL_Rect *rects);
int X11_SetupImage(_THIS, SDL_Surface *screen)
{
#ifndef NO_SHARED_MEMORY
try_mitshm(this, screen);
if(use_mitshm) {
Apr 26, 2001
Apr 26, 2001
93
94
95
96
SDL_Ximage = XShmCreateImage(SDL_Display, SDL_Visual,
this->hidden->depth, ZPixmap,
shminfo.shmaddr, &shminfo,
screen->w, screen->h);
Jan 18, 2002
Jan 18, 2002
97
if(!SDL_Ximage) {
Apr 26, 2001
Apr 26, 2001
98
99
100
101
XShmDetach(SDL_Display, &shminfo);
XSync(SDL_Display, False);
shmdt(shminfo.shmaddr);
screen->pixels = NULL;
Jan 18, 2002
Jan 18, 2002
102
goto error;
Apr 26, 2001
Apr 26, 2001
103
104
}
this->UpdateRects = X11_MITSHMUpdate;
Jan 18, 2002
Jan 18, 2002
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
}
#endif /* not NO_SHARED_MEMORY */
if(!use_mitshm) {
int bpp;
screen->pixels = malloc(screen->h*screen->pitch);
if ( screen->pixels == NULL ) {
SDL_OutOfMemory();
return -1;
}
bpp = screen->format->BytesPerPixel;
SDL_Ximage = XCreateImage(SDL_Display, SDL_Visual,
this->hidden->depth, ZPixmap, 0,
(char *)screen->pixels,
screen->w, screen->h,
32, 0);
if ( SDL_Ximage == NULL )
goto error;
/* XPutImage will convert byte sex automatically */
SDL_Ximage->byte_order = (SDL_BYTEORDER == SDL_BIG_ENDIAN)
? MSBFirst : LSBFirst;
Apr 26, 2001
Apr 26, 2001
125
126
this->UpdateRects = X11_NormalUpdate;
}
Jan 18, 2002
Jan 18, 2002
127
screen->pitch = SDL_Ximage->bytes_per_line;
Apr 26, 2001
Apr 26, 2001
128
return(0);
Jan 18, 2002
Jan 18, 2002
129
130
131
132
error:
SDL_SetError("Couldn't create XImage");
return 1;
Apr 26, 2001
Apr 26, 2001
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
}
void X11_DestroyImage(_THIS, SDL_Surface *screen)
{
if ( SDL_Ximage ) {
XDestroyImage(SDL_Ximage);
#ifndef NO_SHARED_MEMORY
if ( use_mitshm ) {
XShmDetach(SDL_Display, &shminfo);
XSync(SDL_Display, False);
shmdt(shminfo.shmaddr);
}
#endif /* ! NO_SHARED_MEMORY */
SDL_Ximage = NULL;
}
if ( screen ) {
screen->pixels = NULL;
}
}
Sep 4, 2001
Sep 4, 2001
153
/* Determine the number of CPUs in the system */
Apr 26, 2001
Apr 26, 2001
154
155
156
157
158
static int num_CPU(void)
{
static int num_cpus = 0;
if(!num_cpus) {
Sep 4, 2001
Sep 4, 2001
159
#if defined(__linux)
Apr 26, 2001
Apr 26, 2001
160
161
162
163
164
165
166
167
168
169
char line[BUFSIZ];
FILE *pstat = fopen("/proc/stat", "r");
if ( pstat ) {
while ( fgets(line, sizeof(line), pstat) ) {
if (memcmp(line, "cpu", 3) == 0 && line[3] != ' ') {
++num_cpus;
}
}
fclose(pstat);
}
Sep 4, 2001
Sep 4, 2001
170
171
172
173
174
175
#elif defined(_SC_NPROCESSORS_ONLN)
/* number of processors online (SVR4.0MP compliant machines) */
num_cpus = sysconf(_SC_NPROCESSORS_ONLN);
#elif defined(_SC_NPROCESSORS_CONF)
/* number of processors configured (SVR4.0MP compliant machines) */
num_cpus = sysconf(_SC_NPROCESSORS_CONF);
Apr 26, 2001
Apr 26, 2001
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#endif
if ( num_cpus <= 0 ) {
num_cpus = 1;
}
}
return num_cpus;
}
int X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags)
{
int retval;
X11_DestroyImage(this, screen);
if ( flags & SDL_OPENGL ) { /* No image when using GL */
retval = 0;
} else {
retval = X11_SetupImage(this, screen);
/* We support asynchronous blitting on the display */
if ( flags & SDL_ASYNCBLIT ) {
/* This is actually slower on single-CPU systems,
probably because of CPU contention between the
X server and the application.
Note: Is this still true with XFree86 4.0?
*/
if ( num_CPU() > 1 ) {
screen->flags |= SDL_ASYNCBLIT;
}
}
}
return(retval);
}
/* We don't actually allow hardware surfaces other than the main one */
int X11_AllocHWSurface(_THIS, SDL_Surface *surface)
{
return(-1);
}
void X11_FreeHWSurface(_THIS, SDL_Surface *surface)
{
return;
}
int X11_LockHWSurface(_THIS, SDL_Surface *surface)
{
if ( (surface == SDL_VideoSurface) && blit_queued ) {
XSync(GFX_Display, False);
blit_queued = 0;
}
return(0);
}
void X11_UnlockHWSurface(_THIS, SDL_Surface *surface)
{
return;
}
int X11_FlipHWSurface(_THIS, SDL_Surface *surface)
{
return(0);
}
static void X11_NormalUpdate(_THIS, int numrects, SDL_Rect *rects)
{
int i;
Jan 18, 2002
Jan 18, 2002
239
240
241
242
for (i = 0; i < numrects; ++i) {
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
continue;
Apr 26, 2001
Apr 26, 2001
243
}
Jan 18, 2002
Jan 18, 2002
244
245
246
XPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
rects[i].x, rects[i].y,
rects[i].x, rects[i].y, rects[i].w, rects[i].h);
Apr 26, 2001
Apr 26, 2001
247
248
249
}
if ( SDL_VideoSurface->flags & SDL_ASYNCBLIT ) {
XFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
250
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
251
252
253
254
255
256
257
258
259
260
261
} else {
XSync(GFX_Display, False);
}
}
static void X11_MITSHMUpdate(_THIS, int numrects, SDL_Rect *rects)
{
#ifndef NO_SHARED_MEMORY
int i;
for ( i=0; i<numrects; ++i ) {
Jan 18, 2002
Jan 18, 2002
262
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
Apr 26, 2001
Apr 26, 2001
263
264
265
266
267
268
269
270
271
continue;
}
XShmPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
rects[i].x, rects[i].y,
rects[i].x, rects[i].y, rects[i].w, rects[i].h,
False);
}
if ( SDL_VideoSurface->flags & SDL_ASYNCBLIT ) {
XFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
272
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
} else {
XSync(GFX_Display, False);
}
#endif /* ! NO_SHARED_MEMORY */
}
/* There's a problem with the automatic refreshing of the display.
Even though the XVideo code uses the GFX_Display to update the
video memory, it appears that updating the window asynchronously
from a different thread will cause "blackouts" of the window.
This is a sort of a hacked workaround for the problem.
*/
static int enable_autorefresh = 1;
void X11_DisableAutoRefresh(_THIS)
{
--enable_autorefresh;
}
void X11_EnableAutoRefresh(_THIS)
{
++enable_autorefresh;
}
void X11_RefreshDisplay(_THIS)
{
Aug 31, 2001
Aug 31, 2001
299
300
301
/* Don't refresh a display that doesn't have an image (like GL)
Instead, post an expose event so the application can refresh.
*/
Apr 26, 2001
Apr 26, 2001
302
if ( ! SDL_Ximage || (enable_autorefresh <= 0) ) {
Aug 31, 2001
Aug 31, 2001
303
SDL_PrivateExpose();
Apr 26, 2001
Apr 26, 2001
304
305
306
307
308
309
310
return;
}
#ifndef NO_SHARED_MEMORY
if ( this->UpdateRects == X11_MITSHMUpdate ) {
XShmPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
0, 0, 0, 0, this->screen->w, this->screen->h,
False);
Jan 18, 2002
Jan 18, 2002
311
} else
Apr 26, 2001
Apr 26, 2001
312
#endif /* ! NO_SHARED_MEMORY */
Jan 18, 2002
Jan 18, 2002
313
314
315
{
XPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
0, 0, 0, 0, this->screen->w, this->screen->h);
Apr 26, 2001
Apr 26, 2001
316
317
318
}
XSync(SDL_Display, False);
}