Lines Matching refs:fWidth
28 if (y < bestY || (y == bestY && fSkyline[i].fWidth < bestWidth)) {
30 bestWidth = fSkyline[i].fWidth;
66 widthLeft -= fSkyline[i].fWidth;
79 newSegment.fWidth = width;
82 SkASSERT(newSegment.fX + newSegment.fWidth <= this->width());
90 if (fSkyline[i].fX < fSkyline[i-1].fX + fSkyline[i-1].fWidth) {
91 int shrink = fSkyline[i-1].fX + fSkyline[i-1].fWidth - fSkyline[i].fX;
94 fSkyline[i].fWidth -= shrink;
96 if (fSkyline[i].fWidth <= 0) {
112 fSkyline[i].fWidth += fSkyline[i+1].fWidth;