Lines Matching refs:fWidth
95 fHeight = fWidth = initialSize; in GrCCAtlas()
96 fTopNode = skstd::make_unique<Node>(nullptr, 0, 0, fWidth, fHeight); in GrCCAtlas()
111 fDrawBounds.fWidth = SkTMax(fDrawBounds.width(), loc->x() + w); in addRect()
125 if (fWidth == fMaxAtlasSize && fHeight == fMaxAtlasSize) { in internalPlaceRect()
128 if (fHeight <= fWidth) { in internalPlaceRect()
131 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), 0, top, fWidth, fHeight); in internalPlaceRect()
133 int left = fWidth; in internalPlaceRect()
134 fWidth = SkTMin(fWidth * 2, fMaxAtlasSize); in internalPlaceRect()
135 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), left, 0, fWidth, fHeight); in internalPlaceRect()
150 desc.fWidth = fWidth; in finalize()
156 fWidth, fHeight); in finalize()