Lines Matching defs:clip
63 XRectangle *clip, int nclip,
106 XSetClipRectangles(dpy, gc, 0, 0, clip, nclip, Unsorted);
324 XRectangle *clip;
338 clip = malloc(sizeof(XRectangle)*nclip);
340 clip[r].x = rand() % out.width;
341 clip[r].y = rand() % out.height;
342 clip[r].width = rand() % (out.width - clip[r].x);
343 clip[r].height = rand() % (out.height - clip[r].y);
358 fill_rect(&out, alu, clip, nclip,
362 fill_rect(&ref, alu, clip, nclip,
374 free(clip);