Lines Matching refs:rect
339 RectToPipeBox(const VdpRect *rect, struct pipe_resource *res)350 if (rect) {351 if (rect->x1 > rect->x0 &&352 rect->y1 > rect->y0) {353 box.x = rect->x0;354 box.y = rect->y0;355 box.width = rect->x1 - box.x;356 box.height = rect->y1 - box.y;