Lines Matching refs:clippedPathIBounds
30 SkIRect clippedPathIBounds; in renderDeviceSpacePathInAtlas() local
32 clippedPathIBounds = devPathIBounds; in renderDeviceSpacePathInAtlas()
35 SkAssertResult(clippedPathIBounds.intersect(clipIBounds, devPathIBounds)); in renderDeviceSpacePathInAtlas()
39 auto retiredAtlas = this->placeRenderedPathInAtlas(onFlushRP, clippedPathIBounds, in renderDeviceSpacePathInAtlas()
43 this->enqueueRenderedPath(devPath, fillRule, clippedPathIBounds, atlasMatrix, in renderDeviceSpacePathInAtlas()
50 GrOnFlushResourceProvider* onFlushRP, const SkIRect& clippedPathIBounds, in placeRenderedPathInAtlas() argument
55 !fAtlas->addRect(clippedPathIBounds.width(), clippedPathIBounds.height(), &location)) { in placeRenderedPathInAtlas()
62 SkASSERT(clippedPathIBounds.width() <= fAtlasSpecs.fMinWidth); in placeRenderedPathInAtlas()
63 SkASSERT(clippedPathIBounds.height() <= fAtlasSpecs.fMinHeight); in placeRenderedPathInAtlas()
64 SkAssertResult(fAtlas->addRect(clippedPathIBounds.width(), clippedPathIBounds.height(), in placeRenderedPathInAtlas()
67 devToAtlasOffset->set(location.x() - clippedPathIBounds.left(), in placeRenderedPathInAtlas()
68 location.y() - clippedPathIBounds.top()); in placeRenderedPathInAtlas()