Skip to content

Latest commit

 

History

History
318 lines (288 loc) · 8.18 KB

SDL_x11image.c

File metadata and controls

318 lines (288 loc) · 8.18 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Feb 7, 2006
Feb 7, 2006
24
#include <stdio.h>
Sep 4, 2001
Sep 4, 2001
25
#include <unistd.h>
Apr 26, 2001
Apr 26, 2001
26
27
#include "SDL_endian.h"
Feb 16, 2006
Feb 16, 2006
28
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
29
30
31
32
33
34
35
36
37
38
#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
39
shm_error = True;
Apr 26, 2001
Apr 26, 2001
40
41
42
43
44
return(0);
} else
return(X_handler(d,e));
}
Jan 18, 2002
Jan 18, 2002
45
static void try_mitshm(_THIS, SDL_Surface *screen)
Apr 26, 2001
Apr 26, 2001
46
{
Mar 22, 2006
Mar 22, 2006
47
48
49
50
/* Dynamic X11 may not have SHM entry points on this box. */
if ((use_mitshm) && (!SDL_X11_HAVE_SHM))
use_mitshm = 0;
Jan 18, 2002
Jan 18, 2002
51
52
53
54
55
56
57
58
59
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;
Mar 22, 2006
Mar 22, 2006
60
61
62
63
X_handler = XSetErrorHandler(shm_errhandler);
XShmAttach(SDL_Display, &shminfo);
XSync(SDL_Display, True);
XSetErrorHandler(X_handler);
Feb 11, 2004
Feb 11, 2004
64
if ( shm_error )
Jan 18, 2002
Jan 18, 2002
65
shmdt(shminfo.shmaddr);
Apr 26, 2001
Apr 26, 2001
66
67
68
} else {
shm_error = True;
}
Jan 18, 2002
Jan 18, 2002
69
shmctl(shminfo.shmid, IPC_RMID, NULL);
Apr 26, 2001
Apr 26, 2001
70
} else {
Jan 18, 2002
Jan 18, 2002
71
shm_error = True;
Apr 26, 2001
Apr 26, 2001
72
}
Jan 18, 2002
Jan 18, 2002
73
74
75
76
77
78
if ( shm_error )
use_mitshm = 0;
if ( use_mitshm )
screen->pixels = shminfo.shmaddr;
}
#endif /* ! NO_SHARED_MEMORY */
Apr 26, 2001
Apr 26, 2001
79
Jan 18, 2002
Jan 18, 2002
80
81
82
83
84
85
86
87
88
/* 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) {
Mar 22, 2006
Mar 22, 2006
89
SDL_Ximage = XShmCreateImage(SDL_Display, SDL_Visual,
Apr 26, 2001
Apr 26, 2001
90
91
92
this->hidden->depth, ZPixmap,
shminfo.shmaddr, &shminfo,
screen->w, screen->h);
Jan 18, 2002
Jan 18, 2002
93
if(!SDL_Ximage) {
Mar 22, 2006
Mar 22, 2006
94
95
XShmDetach(SDL_Display, &shminfo);
XSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
96
97
shmdt(shminfo.shmaddr);
screen->pixels = NULL;
Jan 18, 2002
Jan 18, 2002
98
goto error;
Apr 26, 2001
Apr 26, 2001
99
100
}
this->UpdateRects = X11_MITSHMUpdate;
Jan 18, 2002
Jan 18, 2002
101
}
Dec 2, 2002
Dec 2, 2002
102
if(!use_mitshm)
Jan 18, 2002
Jan 18, 2002
103
#endif /* not NO_SHARED_MEMORY */
Dec 2, 2002
Dec 2, 2002
104
{
Jan 18, 2002
Jan 18, 2002
105
int bpp;
Feb 7, 2006
Feb 7, 2006
106
screen->pixels = SDL_malloc(screen->h*screen->pitch);
Jan 18, 2002
Jan 18, 2002
107
108
109
110
111
if ( screen->pixels == NULL ) {
SDL_OutOfMemory();
return -1;
}
bpp = screen->format->BytesPerPixel;
Mar 22, 2006
Mar 22, 2006
112
SDL_Ximage = XCreateImage(SDL_Display, SDL_Visual,
Jan 18, 2002
Jan 18, 2002
113
114
115
116
117
118
119
120
121
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
122
123
this->UpdateRects = X11_NormalUpdate;
}
Jan 18, 2002
Jan 18, 2002
124
screen->pitch = SDL_Ximage->bytes_per_line;
Apr 26, 2001
Apr 26, 2001
125
return(0);
Jan 18, 2002
Jan 18, 2002
126
127
128
129
error:
SDL_SetError("Couldn't create XImage");
return 1;
Apr 26, 2001
Apr 26, 2001
130
131
132
133
134
}
void X11_DestroyImage(_THIS, SDL_Surface *screen)
{
if ( SDL_Ximage ) {
Mar 22, 2006
Mar 22, 2006
135
XDestroyImage(SDL_Ximage);
Apr 26, 2001
Apr 26, 2001
136
137
#ifndef NO_SHARED_MEMORY
if ( use_mitshm ) {
Mar 22, 2006
Mar 22, 2006
138
139
XShmDetach(SDL_Display, &shminfo);
XSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
140
141
142
143
144
145
146
147
148
149
shmdt(shminfo.shmaddr);
}
#endif /* ! NO_SHARED_MEMORY */
SDL_Ximage = NULL;
}
if ( screen ) {
screen->pixels = NULL;
}
}
Sep 4, 2001
Sep 4, 2001
150
/* Determine the number of CPUs in the system */
Apr 26, 2001
Apr 26, 2001
151
152
153
154
155
static int num_CPU(void)
{
static int num_cpus = 0;
if(!num_cpus) {
Feb 21, 2006
Feb 21, 2006
156
#if defined(__LINUX__)
Apr 26, 2001
Apr 26, 2001
157
158
159
160
char line[BUFSIZ];
FILE *pstat = fopen("/proc/stat", "r");
if ( pstat ) {
while ( fgets(line, sizeof(line), pstat) ) {
Feb 7, 2006
Feb 7, 2006
161
if (SDL_memcmp(line, "cpu", 3) == 0 && line[3] != ' ') {
Apr 26, 2001
Apr 26, 2001
162
163
164
165
166
++num_cpus;
}
}
fclose(pstat);
}
Feb 21, 2006
Feb 21, 2006
167
#elif defined(__IRIX__)
Mar 6, 2003
Mar 6, 2003
168
num_cpus = sysconf(_SC_NPROC_ONLN);
Sep 4, 2001
Sep 4, 2001
169
170
171
172
173
174
#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
175
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
#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 ) {
Mar 22, 2006
Mar 22, 2006
220
XSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
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
238
239
240
241
for (i = 0; i < numrects; ++i) {
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
continue;
Apr 26, 2001
Apr 26, 2001
242
}
Mar 22, 2006
Mar 22, 2006
243
XPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
244
245
rects[i].x, rects[i].y,
rects[i].x, rects[i].y, rects[i].w, rects[i].h);
Apr 26, 2001
Apr 26, 2001
246
247
}
if ( SDL_VideoSurface->flags & SDL_ASYNCBLIT ) {
Mar 22, 2006
Mar 22, 2006
248
XFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
249
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
250
} else {
Mar 22, 2006
Mar 22, 2006
251
XSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
252
253
254
255
256
257
258
259
260
}
}
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
261
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
Apr 26, 2001
Apr 26, 2001
262
263
continue;
}
Mar 22, 2006
Mar 22, 2006
264
XShmPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
265
266
267
268
269
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 ) {
Mar 22, 2006
Mar 22, 2006
270
XFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
271
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
272
} else {
Mar 22, 2006
Mar 22, 2006
273
XSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
}
#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
298
299
300
/* 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
301
if ( ! SDL_Ximage || (enable_autorefresh <= 0) ) {
Aug 31, 2001
Aug 31, 2001
302
SDL_PrivateExpose();
Apr 26, 2001
Apr 26, 2001
303
304
305
306
return;
}
#ifndef NO_SHARED_MEMORY
if ( this->UpdateRects == X11_MITSHMUpdate ) {
Mar 22, 2006
Mar 22, 2006
307
XShmPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
308
309
0, 0, 0, 0, this->screen->w, this->screen->h,
False);
Jan 18, 2002
Jan 18, 2002
310
} else
Apr 26, 2001
Apr 26, 2001
311
#endif /* ! NO_SHARED_MEMORY */
Jan 18, 2002
Jan 18, 2002
312
{
Mar 22, 2006
Mar 22, 2006
313
XPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
314
0, 0, 0, 0, this->screen->w, this->screen->h);
Apr 26, 2001
Apr 26, 2001
315
}
Mar 22, 2006
Mar 22, 2006
316
XSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
317
}