Lines Matching refs:fWidth
64 fWidth = 1 << (log2area / 2); in GrCCAtlas()
66 fWidth = SkTClamp(fWidth, specs.fMinTextureSize, specs.fMaxPreferredTextureSize); in GrCCAtlas()
69 if (fWidth < specs.fMinWidth || fHeight < specs.fMinHeight) { in GrCCAtlas()
72 fWidth = SkTMin(specs.fMinWidth + kPadding, fMaxTextureSize); in GrCCAtlas()
76 fTopNode = skstd::make_unique<Node>(nullptr, 0, 0, fWidth, fHeight); in GrCCAtlas()
93 desc.fWidth = fWidth; in GrCCAtlas()
116 fDrawBounds.fWidth = SkTMax(fDrawBounds.width(), location.x() + devIBounds.width()); in addRect()
130 if (fWidth == fMaxTextureSize && fHeight == fMaxTextureSize) { in internalPlaceRect()
133 if (fHeight <= fWidth) { in internalPlaceRect()
136 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), 0, top, fWidth, fHeight); in internalPlaceRect()
138 int left = fWidth; in internalPlaceRect()
139 fWidth = SkTMin(fWidth * 2, fMaxTextureSize); in internalPlaceRect()
140 fTopNode = skstd::make_unique<Node>(std::move(fTopNode), left, 0, fWidth, fHeight); in internalPlaceRect()
188 SkASSERT(SkTMax(fHeight, fWidth) <= fMaxTextureSize); in makeRenderTargetContext()
193 SkASSERT(backingTexture->width() == fWidth); in makeRenderTargetContext()
202 fWidth, fHeight); in makeRenderTargetContext()