Lines Matching defs:rect
263 XRectangle rect[2];
268 rect[0].width = rect[1].width = xv->dest_x;
269 rect[0].height = rect[1].height = window_attrs.height;
270 rect[0].y = rect[1].y = 0;
271 rect[0].x = 0;
272 rect[1].x = xv->dest_w + xv->dest_x;
273 XFillRectangles(xv->display, xv->window, xv->gc, rect, 2);
276 rect[0].width = rect[1].width = window_attrs.width;
277 rect[0].height = rect[1].height = xv->dest_y;
278 rect[0].x = rect[1].x = 0;
279 rect[0].y = 0;
280 rect[1].y = xv->dest_h + xv->dest_y;
281 XFillRectangles(xv->display, xv->window, xv->gc, rect, 2);