Home
last modified time | relevance | path

Searched refs:innerBounds (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/src/core/
DSkRRect.cpp762 SkRect innerBounds = rr.getBounds(); in InnerBounds() local
780 SkScalar horizArea = (innerBounds.width() - dw) * innerBounds.height(); in InnerBounds()
782 SkScalar vertArea = (innerBounds.height() - dh) * innerBounds.width(); in InnerBounds()
789 SkScalar innerArea = (innerBounds.width() - kScale * dw) * (innerBounds.height() - kScale * dh); in InnerBounds()
793 innerBounds.fLeft += leftShift; in InnerBounds()
794 innerBounds.fRight -= rightShift; in InnerBounds()
797 innerBounds.fTop += topShift; in InnerBounds()
798 innerBounds.fBottom -= bottomShift; in InnerBounds()
801 innerBounds.fLeft += kScale * leftShift; in InnerBounds()
802 innerBounds.fRight -= kScale * rightShift; in InnerBounds()
[all …]
/third_party/skia/src/gpu/v1/
DClipStack.cpp899 (toAdd.innerBounds().isEmpty() || toAdd.outerBounds().contains(toAdd.innerBounds()))); in addElement()
951 if (!fInnerBounds.intersect(toAdd.innerBounds())) { in addElement()
961 fOuterBounds = subtract(fOuterBounds, toAdd.innerBounds(), /* exact */ true); in addElement()
970 fInnerBounds = subtract(toAdd.innerBounds(), oldOuter, /* exact */ false); in addElement()
976 if (toAdd.innerBounds().width() * toAdd.innerBounds().height() > in addElement()
978 fInnerBounds = toAdd.innerBounds(); in addElement()
1087 fInnerBounds = toAdd.innerBounds(); in replaceWithElement()
1194 return subtract(fDeviceBounds, current.innerBounds(), /* exact */ true); in getConservativeBounds()
1336 scissorBounds = subtract(draw.outerBounds(), cs.innerBounds(), /* exact */ true); in apply()
1412 fullyApplied = e.innerBounds() == e.outerBounds() || in apply()
[all …]
DClipStack.h119 const SkIRect& innerBounds() const { return fInnerBounds; } in innerBounds() function
218 const SkIRect& innerBounds() const { return fInnerBounds; } in innerBounds() function
/third_party/flutter/flutter/examples/layers/rendering/src/
Dsector_layout.dart191 …final Rect innerBounds = Rect.fromLTRB(offset.dx-innerRadius, offset.dy-innerRadius, offset.dx+inn…
192 path.arcTo(innerBounds, parentData.theta + deltaTheta, -deltaTheta, false);