Lines Matching refs:fHeight
90 fHeight = std::min(SkNextPow2(initialSize.height()), fMaxAtlasSize);
140 fDrawBounds.fHeight = std::max(fDrawBounds.height(), location->y() + height);
157 if (h > fHeight) {
158 fHeight = std::min(SkNextPow2(h), fMaxAtlasSize);
160 fTopNode = this->makeNode(nullptr, 0, 0, fWidth, fHeight);
171 if (fWidth >= fMaxAtlasSize && fHeight >= fMaxAtlasSize) {
174 if (fHeight <= fWidth) {
175 int top = fHeight;
176 fHeight = std::min(fHeight * 2, fMaxAtlasSize);
177 fTopNode = this->makeNode(fTopNode, 0, top, fWidth, fHeight);
181 fTopNode = this->makeNode(fTopNode, left, 0, fWidth, fHeight);
193 SkASSERT(std::max(fHeight, fWidth) <= fMaxAtlasSize);