Home
last modified time | relevance | path

Searched refs:childBounds (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/modules/sksg/src/
DSkSGClipEffect.cpp44 auto childBounds = this->INHERITED::onRevalidate(ic, ctm); in onRevalidate() local
46 fNoop = fClipNode->asPath().conservativelyContainsRect(childBounds); in onRevalidate()
48 return childBounds.intersect(clipBounds) ? childBounds : SkRect::MakeEmpty(); in onRevalidate()
DSkSGMaskEffect.cpp90 auto childBounds = this->INHERITED::onRevalidate(ic, ctm); in onRevalidate() local
92 return (is_inverted(fMaskMode) || childBounds.intersect(maskBounds)) in onRevalidate()
93 ? childBounds in onRevalidate()
/third_party/flutter/skia/modules/sksg/src/
DSkSGClipEffect.cpp44 auto childBounds = this->INHERITED::onRevalidate(ic, ctm); in onRevalidate() local
46 fNoop = fClipNode->asPath().conservativelyContainsRect(childBounds); in onRevalidate()
48 return childBounds.intersect(clipBounds) ? childBounds : SkRect::MakeEmpty(); in onRevalidate()
DSkSGMaskEffect.cpp49 auto childBounds = this->INHERITED::onRevalidate(ic, ctm); in onRevalidate() local
51 return (fMaskMode == Mode::kInvert || childBounds.intersect(maskBounds)) in onRevalidate()
52 ? childBounds in onRevalidate()
/third_party/skia/modules/svg/src/
DSkSVGContainer.cpp47 const SkRect childBounds = fChildren[i]->objectBoundingBox(ctx); in onObjectBoundingBox() local
48 bounds.join(childBounds); in onObjectBoundingBox()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dwidget_inspector.dart289 Rect childBounds = _calculateSubtreeBoundsHelper(child, childTransform);
296 childBounds = childBounds.intersect(transformedPaintClip);
299 if (childBounds.isFinite && !childBounds.isEmpty) {
300 bounds = bounds.isEmpty ? childBounds : bounds.expandToInclude(childBounds);