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;
214 test_init_image(&out_image, &t->out.shm, out_format, w, h);
219 die_unless(out_image.depth == ref_image.depth);
220 die_unless(out_image.bits_per_pixel == ref_image.bits_per_pixel);
221 die_unless(out_image.bits_per_pixel == 32);
223 mask = depth_mask(out_image.depth);
225 tmp = XCreatePixmap(t->out.dpy, out_draw, w, h, out_image.depth);
228 XShmGetImage(t->out.dpy, tmp, &out_image, 0, 0, AllPlanes);
231 out = out_image.data;
250 &out_image, &ref_image,
252 save_image(&out_image, "out.png");
258 out += out_image.bytes_per_line;