Lines Matching full:minmax
269 runs_coalesce_band( Run* *psrc_spans, Run* *pdst_spans, SkinBox* minmax )
281 if (pleft < minmax->x1) minmax->x1 = pleft;
308 if (pright > minmax->x2) minmax->x2 = pright;
316 runs_coalesce( Run* dst, Run* src, SkinBox* minmax )
333 if (ytop < minmax->y1) minmax->y1 = ytop;
334 if (ybot > minmax->y2) minmax->y2 = ybot;
339 runs_coalesce_band( &sspan, &dspan, minmax );
992 SkinBox minmax;
1002 minmax.x1 = minmax.y1 = INT_MAX;
1003 minmax.x2 = minmax.y2 = INT_MIN;
1005 count = runs_coalesce( o->runs_base, o->runs_base, &minmax );
1012 skin_box_to_rect( &minmax, &o->result->bounds );