Lines Matching defs:prect
406 xRectangle *prect;
514 prect = xallocarray(regionnumrects, sizeof(xRectangle));
515 if (!prect)
520 free(prect);
529 for (i = numRects; --i >= 0; pbox++, prect++) {
530 prect->x = pbox->x1 - draw_x_off;
531 prect->y = pbox->y1 - draw_y_off;
532 prect->width = pbox->x2 - pbox->x1;
533 prect->height = pbox->y2 - pbox->y1;
535 prect -= numRects;
536 (*pGC->ops->PolyFillRect) (drawable, pGC, numRects, prect);
537 free(prect);