HomeSort by relevance Sort by last modified time
    Searched defs:ximage (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/mesa/drivers/x11/
xm_buffer.c 60 * Allocate a shared memory XImage back buffer for the given XMesaBuffer.
80 b->backxrb->ximage = XShmCreateImage(b->xm_visual->display,
85 if (b->backxrb->ximage == NULL) {
91 b->shminfo.shmid = shmget(IPC_PRIVATE, b->backxrb->ximage->bytes_per_line
92 * b->backxrb->ximage->height, IPC_CREAT|0777);
95 XDestroyImage(b->backxrb->ximage);
96 b->backxrb->ximage = NULL;
102 b->shminfo.shmaddr = b->backxrb->ximage->data
106 XDestroyImage(b->backxrb->ximage);
108 b->backxrb->ximage = NULL
430 XImage *ximage = xrb->ximage; local
521 XImage *ximage = xrb->ximage; local
    [all...]
xm_dd.c 186 if (!xrb->ximage)
199 GLuint *ptr4 = (GLuint *) xrb->ximage->data;
228 XMesaImage *img = xrb->ximage;
389 XMesaImage ximage; local
400 memset(&ximage, 0, sizeof(XMesaImage));
401 ximage.width = width;
402 ximage.height = height;
403 ximage.format = ZPixmap;
404 ximage.data = (char *) pixels
406 ximage.byte_order = LSBFirst
523 XMesaImage ximage; local
    [all...]
xmesaP.h 83 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
147 * Either <ximage> or <pixmap> will be used, never both.
160 XMesaImage *ximage; /* The back buffer, if not using a Pixmap */ member in struct:xmesa_renderbuffer
204 /* BACK_XIMAGE = use XImage for back buffer */
207 /* 1 = XImage support available */
311 * Return the address of a 2, 3 or 4-byte pixel in the buffer's XImage:
  /external/mesa3d/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 69 XImage *tempImage;
145 * Allocate a shared memory XImage back buffer for the given display target.
296 XImage *ximage; local
336 ximage = xlib_dt->tempImage;
337 ximage->data = xlib_dt->data;
341 ximage, 0, 0, 0, 0, xlib_dt->width, xlib_dt->height, False);
345 ximage = xlib_dt->tempImage;
346 ximage->data = xlib_dt->data;
348 /* check that the XImage has been previously initialized *
    [all...]
  /external/mesa3d/src/glx/
drisw_glx.c 67 XImage *ximage; member in struct:drisw_drawable
97 /* create XImage */
98 pdp->ximage = XCreateImage(dpy,
111 if (pdp->ximage->bits_per_pixel == 24)
112 pdp->ximage->bits_per_pixel = 32;
120 XDestroyImage(pdp->ximage);
182 XImage *ximage; local
198 ximage = pdp->ximage
218 XImage *ximage; local
    [all...]
  /external/libpng/contrib/gregbook/
rpng-x.c 139 static XImage *ximage; variable
660 ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
663 if (!ximage) {
676 ximage->byte_order = MSBFirst;
693 int ximage_rowbytes = ximage->bytes_per_line;
694 /* int bpp = ximage->bits_per_pixel; */
701 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel))
702 Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst?
703 "MSBFirst" : (ximage->byte_order == LSBFirst? "LSBFirst" : "unknown"))
    [all...]
rpng2-x.c 274 static XImage *ximage; variable
    [all...]

Completed in 1433 milliseconds