Skip to content

Latest commit

 

History

History
318 lines (289 loc) · 8.1 KB

SDL_x11image.c

File metadata and controls

318 lines (289 loc) · 8.1 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
#include "SDL_x11image_c.h"
#ifndef NO_SHARED_MEMORY
/* 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 ) {
Feb 11, 2004
Feb 11, 2004
44
shm_error = True;
Apr 26, 2001
Apr 26, 2001
45
46
47
48
49
return(0);
} else
return(X_handler(d,e));
}
Jan 18, 2002
Jan 18, 2002
50
static void try_mitshm(_THIS, SDL_Surface *screen)
Apr 26, 2001
Apr 26, 2001
51
{
Jan 18, 2002
Jan 18, 2002
52
53
54
55
56
57
58
59
60
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;
Nov 5, 2005
Nov 5, 2005
61
62
63
64
X_handler = pXSetErrorHandler(shm_errhandler);
pXShmAttach(SDL_Display, &shminfo);
pXSync(SDL_Display, True);
pXSetErrorHandler(X_handler);
Feb 11, 2004
Feb 11, 2004
65
if ( shm_error )
Jan 18, 2002
Jan 18, 2002
66
shmdt(shminfo.shmaddr);
Apr 26, 2001
Apr 26, 2001
67
68
69
} else {
shm_error = True;
}
Jan 18, 2002
Jan 18, 2002
70
shmctl(shminfo.shmid, IPC_RMID, NULL);
Apr 26, 2001
Apr 26, 2001
71
} else {
Jan 18, 2002
Jan 18, 2002
72
shm_error = True;
Apr 26, 2001
Apr 26, 2001
73
}
Jan 18, 2002
Jan 18, 2002
74
75
76
77
78
79
if ( shm_error )
use_mitshm = 0;
if ( use_mitshm )
screen->pixels = shminfo.shmaddr;
}
#endif /* ! NO_SHARED_MEMORY */
Apr 26, 2001
Apr 26, 2001
80
Jan 18, 2002
Jan 18, 2002
81
82
83
84
85
86
87
88
89
/* 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) {
Nov 5, 2005
Nov 5, 2005
90
SDL_Ximage = pXShmCreateImage(SDL_Display, SDL_Visual,
Apr 26, 2001
Apr 26, 2001
91
92
93
this->hidden->depth, ZPixmap,
shminfo.shmaddr, &shminfo,
screen->w, screen->h);
Jan 18, 2002
Jan 18, 2002
94
if(!SDL_Ximage) {
Nov 5, 2005
Nov 5, 2005
95
96
pXShmDetach(SDL_Display, &shminfo);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
97
98
shmdt(shminfo.shmaddr);
screen->pixels = NULL;
Jan 18, 2002
Jan 18, 2002
99
goto error;
Apr 26, 2001
Apr 26, 2001
100
101
}
this->UpdateRects = X11_MITSHMUpdate;
Jan 18, 2002
Jan 18, 2002
102
}
Dec 2, 2002
Dec 2, 2002
103
if(!use_mitshm)
Jan 18, 2002
Jan 18, 2002
104
#endif /* not NO_SHARED_MEMORY */
Dec 2, 2002
Dec 2, 2002
105
{
Jan 18, 2002
Jan 18, 2002
106
107
108
109
110
111
112
int bpp;
screen->pixels = malloc(screen->h*screen->pitch);
if ( screen->pixels == NULL ) {
SDL_OutOfMemory();
return -1;
}
bpp = screen->format->BytesPerPixel;
Nov 5, 2005
Nov 5, 2005
113
SDL_Ximage = pXCreateImage(SDL_Display, SDL_Visual,
Jan 18, 2002
Jan 18, 2002
114
115
116
117
118
119
120
121
122
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
123
124
this->UpdateRects = X11_NormalUpdate;
}
Jan 18, 2002
Jan 18, 2002
125
screen->pitch = SDL_Ximage->bytes_per_line;
Apr 26, 2001
Apr 26, 2001
126
return(0);
Jan 18, 2002
Jan 18, 2002
127
128
129
130
error:
SDL_SetError("Couldn't create XImage");
return 1;
Apr 26, 2001
Apr 26, 2001
131
132
133
134
135
}
void X11_DestroyImage(_THIS, SDL_Surface *screen)
{
if ( SDL_Ximage ) {
Nov 5, 2005
Nov 5, 2005
136
pXDestroyImage(SDL_Ximage);
Apr 26, 2001
Apr 26, 2001
137
138
#ifndef NO_SHARED_MEMORY
if ( use_mitshm ) {
Nov 5, 2005
Nov 5, 2005
139
140
pXShmDetach(SDL_Display, &shminfo);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
141
142
143
144
145
146
147
148
149
150
shmdt(shminfo.shmaddr);
}
#endif /* ! NO_SHARED_MEMORY */
SDL_Ximage = NULL;
}
if ( screen ) {
screen->pixels = NULL;
}
}
Sep 4, 2001
Sep 4, 2001
151
/* Determine the number of CPUs in the system */
Apr 26, 2001
Apr 26, 2001
152
153
154
155
156
static int num_CPU(void)
{
static int num_cpus = 0;
if(!num_cpus) {
Sep 4, 2001
Sep 4, 2001
157
#if defined(__linux)
Apr 26, 2001
Apr 26, 2001
158
159
160
161
162
163
164
165
166
167
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);
}
Mar 6, 2003
Mar 6, 2003
168
169
#elif defined(__sgi)
num_cpus = sysconf(_SC_NPROC_ONLN);
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
#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 ) {
Nov 5, 2005
Nov 5, 2005
221
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
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
}
Nov 5, 2005
Nov 5, 2005
244
pXPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
245
246
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
}
if ( SDL_VideoSurface->flags & SDL_ASYNCBLIT ) {
Nov 5, 2005
Nov 5, 2005
249
pXFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
250
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
251
} else {
Nov 5, 2005
Nov 5, 2005
252
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
253
254
255
256
257
258
259
260
261
}
}
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
continue;
}
Nov 5, 2005
Nov 5, 2005
265
pXShmPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
266
267
268
269
270
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 ) {
Nov 5, 2005
Nov 5, 2005
271
pXFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
272
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
273
} else {
Nov 5, 2005
Nov 5, 2005
274
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
}
#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
return;
}
#ifndef NO_SHARED_MEMORY
if ( this->UpdateRects == X11_MITSHMUpdate ) {
Nov 5, 2005
Nov 5, 2005
308
pXShmPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
309
310
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
{
Nov 5, 2005
Nov 5, 2005
314
pXPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
315
0, 0, 0, 0, this->screen->w, this->screen->h);
Apr 26, 2001
Apr 26, 2001
316
}
Nov 5, 2005
Nov 5, 2005
317
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
318
}