Skip to content

Latest commit

 

History

History
313 lines (285 loc) · 8.08 KB

SDL_x11image.c

File metadata and controls

313 lines (285 loc) · 8.08 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 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
{
Jan 18, 2002
Jan 18, 2002
47
48
49
50
51
52
53
54
55
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
56
57
58
59
X_handler = pXSetErrorHandler(shm_errhandler);
pXShmAttach(SDL_Display, &shminfo);
pXSync(SDL_Display, True);
pXSetErrorHandler(X_handler);
Feb 11, 2004
Feb 11, 2004
60
if ( shm_error )
Jan 18, 2002
Jan 18, 2002
61
shmdt(shminfo.shmaddr);
Apr 26, 2001
Apr 26, 2001
62
63
64
} else {
shm_error = True;
}
Jan 18, 2002
Jan 18, 2002
65
shmctl(shminfo.shmid, IPC_RMID, NULL);
Apr 26, 2001
Apr 26, 2001
66
} else {
Jan 18, 2002
Jan 18, 2002
67
shm_error = True;
Apr 26, 2001
Apr 26, 2001
68
}
Jan 18, 2002
Jan 18, 2002
69
70
71
72
73
74
if ( shm_error )
use_mitshm = 0;
if ( use_mitshm )
screen->pixels = shminfo.shmaddr;
}
#endif /* ! NO_SHARED_MEMORY */
Apr 26, 2001
Apr 26, 2001
75
Jan 18, 2002
Jan 18, 2002
76
77
78
79
80
81
82
83
84
/* 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
85
SDL_Ximage = pXShmCreateImage(SDL_Display, SDL_Visual,
Apr 26, 2001
Apr 26, 2001
86
87
88
this->hidden->depth, ZPixmap,
shminfo.shmaddr, &shminfo,
screen->w, screen->h);
Jan 18, 2002
Jan 18, 2002
89
if(!SDL_Ximage) {
Nov 5, 2005
Nov 5, 2005
90
91
pXShmDetach(SDL_Display, &shminfo);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
92
93
shmdt(shminfo.shmaddr);
screen->pixels = NULL;
Jan 18, 2002
Jan 18, 2002
94
goto error;
Apr 26, 2001
Apr 26, 2001
95
96
}
this->UpdateRects = X11_MITSHMUpdate;
Jan 18, 2002
Jan 18, 2002
97
}
Dec 2, 2002
Dec 2, 2002
98
if(!use_mitshm)
Jan 18, 2002
Jan 18, 2002
99
#endif /* not NO_SHARED_MEMORY */
Dec 2, 2002
Dec 2, 2002
100
{
Jan 18, 2002
Jan 18, 2002
101
int bpp;
Feb 7, 2006
Feb 7, 2006
102
screen->pixels = SDL_malloc(screen->h*screen->pitch);
Jan 18, 2002
Jan 18, 2002
103
104
105
106
107
if ( screen->pixels == NULL ) {
SDL_OutOfMemory();
return -1;
}
bpp = screen->format->BytesPerPixel;
Nov 5, 2005
Nov 5, 2005
108
SDL_Ximage = pXCreateImage(SDL_Display, SDL_Visual,
Jan 18, 2002
Jan 18, 2002
109
110
111
112
113
114
115
116
117
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
118
119
this->UpdateRects = X11_NormalUpdate;
}
Jan 18, 2002
Jan 18, 2002
120
screen->pitch = SDL_Ximage->bytes_per_line;
Apr 26, 2001
Apr 26, 2001
121
return(0);
Jan 18, 2002
Jan 18, 2002
122
123
124
125
error:
SDL_SetError("Couldn't create XImage");
return 1;
Apr 26, 2001
Apr 26, 2001
126
127
128
129
130
}
void X11_DestroyImage(_THIS, SDL_Surface *screen)
{
if ( SDL_Ximage ) {
Nov 5, 2005
Nov 5, 2005
131
pXDestroyImage(SDL_Ximage);
Apr 26, 2001
Apr 26, 2001
132
133
#ifndef NO_SHARED_MEMORY
if ( use_mitshm ) {
Nov 5, 2005
Nov 5, 2005
134
135
pXShmDetach(SDL_Display, &shminfo);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
136
137
138
139
140
141
142
143
144
145
shmdt(shminfo.shmaddr);
}
#endif /* ! NO_SHARED_MEMORY */
SDL_Ximage = NULL;
}
if ( screen ) {
screen->pixels = NULL;
}
}
Sep 4, 2001
Sep 4, 2001
146
/* Determine the number of CPUs in the system */
Apr 26, 2001
Apr 26, 2001
147
148
149
150
151
static int num_CPU(void)
{
static int num_cpus = 0;
if(!num_cpus) {
Feb 21, 2006
Feb 21, 2006
152
#if defined(__LINUX__)
Apr 26, 2001
Apr 26, 2001
153
154
155
156
char line[BUFSIZ];
FILE *pstat = fopen("/proc/stat", "r");
if ( pstat ) {
while ( fgets(line, sizeof(line), pstat) ) {
Feb 7, 2006
Feb 7, 2006
157
if (SDL_memcmp(line, "cpu", 3) == 0 && line[3] != ' ') {
Apr 26, 2001
Apr 26, 2001
158
159
160
161
162
++num_cpus;
}
}
fclose(pstat);
}
Feb 21, 2006
Feb 21, 2006
163
#elif defined(__IRIX__)
Mar 6, 2003
Mar 6, 2003
164
num_cpus = sysconf(_SC_NPROC_ONLN);
Sep 4, 2001
Sep 4, 2001
165
166
167
168
169
170
#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
171
172
173
174
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
#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
216
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
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
234
235
236
237
for (i = 0; i < numrects; ++i) {
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
continue;
Apr 26, 2001
Apr 26, 2001
238
}
Nov 5, 2005
Nov 5, 2005
239
pXPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
240
241
rects[i].x, rects[i].y,
rects[i].x, rects[i].y, rects[i].w, rects[i].h);
Apr 26, 2001
Apr 26, 2001
242
243
}
if ( SDL_VideoSurface->flags & SDL_ASYNCBLIT ) {
Nov 5, 2005
Nov 5, 2005
244
pXFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
245
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
246
} else {
Nov 5, 2005
Nov 5, 2005
247
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
248
249
250
251
252
253
254
255
256
}
}
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
257
if ( rects[i].w == 0 || rects[i].h == 0 ) { /* Clipped? */
Apr 26, 2001
Apr 26, 2001
258
259
continue;
}
Nov 5, 2005
Nov 5, 2005
260
pXShmPutImage(GFX_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
261
262
263
264
265
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
266
pXFlush(GFX_Display);
Jan 18, 2002
Jan 18, 2002
267
blit_queued = 1;
Apr 26, 2001
Apr 26, 2001
268
} else {
Nov 5, 2005
Nov 5, 2005
269
pXSync(GFX_Display, False);
Apr 26, 2001
Apr 26, 2001
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
}
#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
294
295
296
/* 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
297
if ( ! SDL_Ximage || (enable_autorefresh <= 0) ) {
Aug 31, 2001
Aug 31, 2001
298
SDL_PrivateExpose();
Apr 26, 2001
Apr 26, 2001
299
300
301
302
return;
}
#ifndef NO_SHARED_MEMORY
if ( this->UpdateRects == X11_MITSHMUpdate ) {
Nov 5, 2005
Nov 5, 2005
303
pXShmPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Apr 26, 2001
Apr 26, 2001
304
305
0, 0, 0, 0, this->screen->w, this->screen->h,
False);
Jan 18, 2002
Jan 18, 2002
306
} else
Apr 26, 2001
Apr 26, 2001
307
#endif /* ! NO_SHARED_MEMORY */
Jan 18, 2002
Jan 18, 2002
308
{
Nov 5, 2005
Nov 5, 2005
309
pXPutImage(SDL_Display, SDL_Window, SDL_GC, SDL_Ximage,
Jan 18, 2002
Jan 18, 2002
310
0, 0, 0, 0, this->screen->w, this->screen->h);
Apr 26, 2001
Apr 26, 2001
311
}
Nov 5, 2005
Nov 5, 2005
312
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
313
}