Lines Matching defs:out_image
75 XImage *out_image, *ref_image;
83 out_image = XGetImage(t->out.dpy, out_draw,
86 out = out_image->data;
93 mask = depth_mask(out_image->depth);
104 out_image, ref_image,
110 out += out_image->bytes_per_line;
114 XDestroyImage(out_image);
199 XImage out_image, ref_image;
211 test_init_image(&out_image, &t->out.shm, out_format, w, h);
214 die_unless(out_image.depth == ref_image.depth);
215 die_unless(out_image.bits_per_pixel == ref_image.bits_per_pixel);
216 die_unless(out_image.bits_per_pixel == 32);
218 XShmGetImage(t->out.dpy, out_draw, &out_image, x, y, AllPlanes);
219 out = (uint32_t *)out_image.data;
227 mask = depth_mask(out_image.depth);
234 &out_image, &ref_image,
236 save_image(&out_image, "out.png");
242 out = (uint32_t *)((char *)out + out_image.bytes_per_line);