1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Bismarck, ND., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
27 **************************************************************************/
35 #include "pipe/p_format.h"
36 #include "pipe/p_context.h"
37 #include "util/u_inlines.h"
38 #include "util/u_format.h"
39 #include "util/u_math.h"
40 #include "util/u_memory.h"
42 #include "state_tracker/xlib_sw_winsys.h"
45 #include <X11/Xlibint.h>
46 #include <X11/Xutil.h>
49 #include <X11/extensions/XShm.h>
52 * Subclass of pipe_buffer for Xlib winsys.
53 * Low-level OS/window system memory buffer
55 struct xm_displaytarget
57 enum pipe_format format
;
70 /* This is the last drawable that this display target was presented
71 * against. May need to recreate gc, tempImage when this changes??
75 XShmSegmentInfo shminfo
;
81 * Subclass of sw_winsys for Xlib winsys
85 struct sw_winsys base
;
95 static INLINE
struct xm_displaytarget
*
96 xm_displaytarget( struct sw_displaytarget
*dt
)
98 return (struct xm_displaytarget
*)dt
;
103 * X Shared Memory Image extension code
106 static volatile int mesaXErrorFlag
= 0;
109 * Catches potential Xlib errors.
112 mesaHandleXError(Display
*dpy
, XErrorEvent
*event
)
121 static char *alloc_shm(struct xm_displaytarget
*buf
, unsigned size
)
123 XShmSegmentInfo
*const shminfo
= & buf
->shminfo
;
125 shminfo
->shmid
= shmget(IPC_PRIVATE
, size
, IPC_CREAT
|0777);
126 if (shminfo
->shmid
< 0) {
130 shminfo
->shmaddr
= (char *) shmat(shminfo
->shmid
, 0, 0);
131 if (shminfo
->shmaddr
== (char *) -1) {
132 shmctl(shminfo
->shmid
, IPC_RMID
, 0);
136 shminfo
->readOnly
= False
;
137 return shminfo
->shmaddr
;
142 * Allocate a shared memory XImage back buffer for the given XMesaBuffer.
145 alloc_shm_ximage(struct xm_displaytarget
*xm_dt
,
146 struct xlib_drawable
*xmb
,
147 unsigned width
, unsigned height
)
150 * We have to do a _lot_ of error checking here to be sure we can
151 * really use the XSHM extension. It seems different servers trigger
152 * errors at different points if the extension won't work. Therefore
153 * we have to be very careful...
155 int (*old_handler
)(Display
*, XErrorEvent
*);
157 xm_dt
->tempImage
= XShmCreateImage(xm_dt
->display
,
164 if (xm_dt
->tempImage
== NULL
) {
171 old_handler
= XSetErrorHandler(mesaHandleXError
);
172 /* This may trigger the X protocol error we're ready to catch: */
173 XShmAttach(xm_dt
->display
, &xm_dt
->shminfo
);
174 XSync(xm_dt
->display
, False
);
176 if (mesaXErrorFlag
) {
177 /* we are on a remote display, this error is normal, don't print it */
178 XFlush(xm_dt
->display
);
180 XDestroyImage(xm_dt
->tempImage
);
181 xm_dt
->tempImage
= NULL
;
183 (void) XSetErrorHandler(old_handler
);
192 alloc_ximage(struct xm_displaytarget
*xm_dt
,
193 struct xlib_drawable
*xmb
,
194 unsigned width
, unsigned height
)
197 alloc_shm_ximage(xm_dt
, xmb
, width
, height
);
201 xm_dt
->tempImage
= XCreateImage(xm_dt
->display
,
210 xm_is_displaytarget_format_supported( struct sw_winsys
*ws
,
212 enum pipe_format format
)
214 /* TODO: check visuals or other sensible thing here */
220 xm_displaytarget_map(struct sw_winsys
*ws
,
221 struct sw_displaytarget
*dt
,
224 struct xm_displaytarget
*xm_dt
= xm_displaytarget(dt
);
225 xm_dt
->mapped
= xm_dt
->data
;
226 return xm_dt
->mapped
;
230 xm_displaytarget_unmap(struct sw_winsys
*ws
,
231 struct sw_displaytarget
*dt
)
233 struct xm_displaytarget
*xm_dt
= xm_displaytarget(dt
);
234 xm_dt
->mapped
= NULL
;
238 xm_displaytarget_destroy(struct sw_winsys
*ws
,
239 struct sw_displaytarget
*dt
)
241 struct xm_displaytarget
*xm_dt
= xm_displaytarget(dt
);
244 if (xm_dt
->shminfo
.shmid
>= 0) {
245 shmdt(xm_dt
->shminfo
.shmaddr
);
246 shmctl(xm_dt
->shminfo
.shmid
, IPC_RMID
, 0);
248 xm_dt
->shminfo
.shmid
= -1;
249 xm_dt
->shminfo
.shmaddr
= (char *) -1;
256 if (xm_dt
->tempImage
)
257 XDestroyImage(xm_dt
->tempImage
);
260 XFreeGC(xm_dt
->display
, xm_dt
->gc
);
267 * Display/copy the image in the surface into the X window specified
268 * by the XMesaBuffer.
271 xlib_sw_display(struct xlib_drawable
*xlib_drawable
,
272 struct sw_displaytarget
*dt
)
274 static boolean no_swap
= 0;
275 static boolean firsttime
= 1;
276 struct xm_displaytarget
*xm_dt
= xm_displaytarget(dt
);
277 Display
*display
= xm_dt
->display
;
281 no_swap
= getenv("SP_NO_RAST") != NULL
;
288 if (xm_dt
->drawable
!= xlib_drawable
->drawable
) {
290 XFreeGC( display
, xm_dt
->gc
);
294 if (xm_dt
->tempImage
) {
295 XDestroyImage( xm_dt
->tempImage
);
296 xm_dt
->tempImage
= NULL
;
299 xm_dt
->drawable
= xlib_drawable
->drawable
;
302 if (xm_dt
->tempImage
== NULL
) {
303 assert(util_format_get_blockwidth(xm_dt
->format
) == 1);
304 assert(util_format_get_blockheight(xm_dt
->format
) == 1);
305 alloc_ximage(xm_dt
, xlib_drawable
,
306 xm_dt
->stride
/ util_format_get_blocksize(xm_dt
->format
),
308 if (!xm_dt
->tempImage
)
312 if (xm_dt
->gc
== NULL
) {
313 xm_dt
->gc
= XCreateGC( display
, xlib_drawable
->drawable
, 0, NULL
);
314 XSetFunction( display
, xm_dt
->gc
, GXcopy
);
319 ximage
= xm_dt
->tempImage
;
320 ximage
->data
= xm_dt
->data
;
322 /* _debug_printf("XSHM\n"); */
323 XShmPutImage(xm_dt
->display
, xlib_drawable
->drawable
, xm_dt
->gc
,
324 ximage
, 0, 0, 0, 0, xm_dt
->width
, xm_dt
->height
, False
);
327 /* display image in Window */
328 ximage
= xm_dt
->tempImage
;
329 ximage
->data
= xm_dt
->data
;
331 /* check that the XImage has been previously initialized */
332 assert(ximage
->format
);
333 assert(ximage
->bitmap_unit
);
335 /* update XImage's fields */
336 ximage
->width
= xm_dt
->width
;
337 ximage
->height
= xm_dt
->height
;
338 ximage
->bytes_per_line
= xm_dt
->stride
;
340 /* _debug_printf("XPUT\n"); */
341 XPutImage(xm_dt
->display
, xlib_drawable
->drawable
, xm_dt
->gc
,
342 ximage
, 0, 0, 0, 0, xm_dt
->width
, xm_dt
->height
);
347 * Display/copy the image in the surface into the X window specified
348 * by the XMesaBuffer.
351 xm_displaytarget_display(struct sw_winsys
*ws
,
352 struct sw_displaytarget
*dt
,
353 void *context_private
)
355 struct xlib_drawable
*xlib_drawable
= (struct xlib_drawable
*)context_private
;
356 xlib_sw_display(xlib_drawable
, dt
);
360 static struct sw_displaytarget
*
361 xm_displaytarget_create(struct sw_winsys
*winsys
,
363 enum pipe_format format
,
364 unsigned width
, unsigned height
,
368 struct xm_displaytarget
*xm_dt
;
369 unsigned nblocksy
, size
;
371 xm_dt
= CALLOC_STRUCT(xm_displaytarget
);
375 xm_dt
->display
= ((struct xlib_sw_winsys
*)winsys
)->display
;
376 xm_dt
->format
= format
;
377 xm_dt
->width
= width
;
378 xm_dt
->height
= height
;
380 nblocksy
= util_format_get_nblocksy(format
, height
);
381 xm_dt
->stride
= align(util_format_get_stride(format
, width
), alignment
);
382 size
= xm_dt
->stride
* nblocksy
;
384 if (!debug_get_bool_option("XLIB_NO_SHM", FALSE
))
386 xm_dt
->shminfo
.shmid
= -1;
387 xm_dt
->shminfo
.shmaddr
= (char *) -1;
390 xm_dt
->data
= alloc_shm(xm_dt
, size
);
396 xm_dt
->data
= align_malloc(size
, alignment
);
401 *stride
= xm_dt
->stride
;
402 return (struct sw_displaytarget
*)xm_dt
;
411 static struct sw_displaytarget
*
412 xm_displaytarget_from_handle(struct sw_winsys
*winsys
,
413 const struct pipe_texture
*templet
,
414 struct winsys_handle
*whandle
,
423 xm_displaytarget_get_handle(struct sw_winsys
*winsys
,
424 struct sw_displaytarget
*dt
,
425 struct winsys_handle
*whandle
)
433 xm_destroy( struct sw_winsys
*ws
)
440 xlib_create_sw_winsys( Display
*display
)
442 struct xlib_sw_winsys
*ws
;
444 ws
= CALLOC_STRUCT(xlib_sw_winsys
);
448 ws
->display
= display
;
449 ws
->base
.destroy
= xm_destroy
;
451 ws
->base
.is_displaytarget_format_supported
= xm_is_displaytarget_format_supported
;
453 ws
->base
.displaytarget_create
= xm_displaytarget_create
;
454 ws
->base
.displaytarget_from_handle
= xm_displaytarget_from_handle
;
455 ws
->base
.displaytarget_get_handle
= xm_displaytarget_get_handle
;
456 ws
->base
.displaytarget_map
= xm_displaytarget_map
;
457 ws
->base
.displaytarget_unmap
= xm_displaytarget_unmap
;
458 ws
->base
.displaytarget_destroy
= xm_displaytarget_destroy
;
460 ws
->base
.displaytarget_display
= xm_displaytarget_display
;