Lines Matching refs:rect
31 xRectangle *rect; in glamor_solid_boxes() local
34 rect = xallocarray(nbox, sizeof(xRectangle)); in glamor_solid_boxes()
35 if (!rect) in glamor_solid_boxes()
38 rect[n].x = box[n].x1; in glamor_solid_boxes()
39 rect[n].y = box[n].y1; in glamor_solid_boxes()
40 rect[n].width = box[n].x2 - box[n].x1; in glamor_solid_boxes()
41 rect[n].height = box[n].y2 - box[n].y1; in glamor_solid_boxes()
51 gc->ops->PolyFillRect(drawable, gc, nbox, rect); in glamor_solid_boxes()
54 free(rect); in glamor_solid_boxes()
64 xRectangle rect; in glamor_solid() local
72 rect.x = x; in glamor_solid()
73 rect.y = y; in glamor_solid()
74 rect.width = width; in glamor_solid()
75 rect.height = height; in glamor_solid()
76 gc->ops->PolyFillRect(drawable, gc, 1, &rect); in glamor_solid()