Home | History | Annotate | Download | only in src

Lines Matching refs:ximage

30 *  Create the Pixmap related to the given XImage.                             *
45 XImage *ximage,
52 if ((ximage->width > UINT16_MAX) || (ximage->height > UINT16_MAX)) {
56 *pixmap_return = XCreatePixmap(display, d, ximage->width,
57 ximage->height, ximage->depth);
64 XPutImage(display, *pixmap_return, gc, ximage, 0, 0, 0, 0,
65 ximage->width, ximage->height);