Lines Matching defs:clip
18 XRectangle *clip, int nclip,
42 XSetClipRectangles(dpy, gc, 0, 0, clip, nclip, Unsorted);
160 XRectangle *clip;
174 clip = malloc(sizeof(XRectangle)*nclip);
176 clip[r].x = rand() % out.width;
177 clip[r].y = rand() % out.height;
178 clip[r].width = rand() % (out.width - clip[r].x);
179 clip[r].height = rand() % (out.height - clip[r].y);
195 fill_rect(&out, alu, clip, nclip,
199 fill_rect(&ref, alu, clip, nclip,
211 free(clip);