Lines Matching refs:fWidth
89 fWidth = std::min(SkNextPow2(initialSize.width()), fMaxAtlasSize);
139 fDrawBounds.fWidth = std::max(fDrawBounds.width(), location->x() + width);
154 if (w > fWidth) {
155 fWidth = std::min(SkNextPow2(w), fMaxAtlasSize);
160 fTopNode = this->makeNode(nullptr, 0, 0, fWidth, fHeight);
171 if (fWidth >= fMaxAtlasSize && fHeight >= fMaxAtlasSize) {
174 if (fHeight <= fWidth) {
177 fTopNode = this->makeNode(fTopNode, 0, top, fWidth, fHeight);
179 int left = fWidth;
180 fWidth = std::min(fWidth * 2, fMaxAtlasSize);
181 fTopNode = this->makeNode(fTopNode, left, 0, fWidth, fHeight);
193 SkASSERT(std::max(fHeight, fWidth) <= fMaxAtlasSize);