Lines Matching refs:ximage
82 XImage *ximage; in xnestPutImage() local
84 ximage = XCreateImage(xnestDisplay, xnestDefaultVisual(pDrawable->pScreen), in xnestPutImage()
90 if (ximage) { in xnestPutImage()
92 ximage, 0, 0, x, y, w, h); in xnestPutImage()
93 XFree(ximage); in xnestPutImage()
108 XImage *ximage; in xnestGetImage() local
116 ximage = XGetImage(xnestDisplay, xnestDrawable(pDrawable), in xnestGetImage()
120 if (ximage) { in xnestGetImage()
121 length = ximage->bytes_per_line * ximage->height; in xnestGetImage()
123 memmove(pImage, ximage->data, length); in xnestGetImage()
125 XDestroyImage(ximage); in xnestGetImage()