Home | History | Annotate | Download | only in xnest

Lines Matching refs:ximage

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