HomeSort by relevance Sort by last modified time
    Searched defs:childBounds (Results 1 - 4 of 4) sorted by null

  /external/skia/modules/sksg/src/
SkSGClipEffect.cpp 44 auto childBounds = this->INHERITED::onRevalidate(ic, ctm);
46 fNoop = fClipNode->asPath().conservativelyContainsRect(childBounds);
48 return childBounds.intersect(clipBounds) ? childBounds : SkRect::MakeEmpty();
SkSGMaskEffect.cpp 49 auto childBounds = this->INHERITED::onRevalidate(ic, ctm);
51 return (fMaskMode == Mode::kInvert || childBounds.intersect(maskBounds))
52 ? childBounds
  /external/skqp/modules/sksg/src/
SkSGClipEffect.cpp 43 auto childBounds = this->INHERITED::onRevalidate(ic, ctm);
45 fNoop = fClipNode->asPath().conservativelyContainsRect(childBounds);
47 return childBounds.intersect(clipBounds) ? childBounds : SkRect::MakeEmpty();
SkSGMaskEffect.cpp 48 auto childBounds = this->INHERITED::onRevalidate(ic, ctm);
50 return (fMaskMode == Mode::kInvert || childBounds.intersect(maskBounds))
51 ? childBounds

Completed in 3072 milliseconds