Home | History | Annotate | Download | only in xlib

Lines Matching refs:ximage

70    XImage *tempImage;
146 * Allocate a shared memory XImage back buffer for the given display target.
303 XImage *ximage;
343 ximage = xlib_dt->tempImage;
344 ximage->data = xlib_dt->data;
348 ximage, 0, 0, 0, 0, xlib_dt->width, xlib_dt->height, False);
352 ximage = xlib_dt->tempImage;
353 ximage->data = xlib_dt->data;
355 /* check that the XImage has been previously initialized */
356 assert(ximage->format);
357 assert(ximage->bitmap_unit);
359 /* update XImage's fields */
360 ximage->width = xlib_dt->width;
361 ximage->height = xlib_dt->height;
362 ximage->bytes_per_line = xlib_dt->stride;
366 ximage, 0, 0, 0, 0, xlib_dt->width, xlib_dt->height);