Home
last modified time | relevance | path

Searched refs:ComputeFastBounds (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/core/
DSkPathEffect.cpp114 return SkPathEffectPriv::ComputeFastBounds(fPE1.get(), bounds) && in SK_FLATTENABLE_HOOKS()
115 SkPathEffectPriv::ComputeFastBounds(fPE0.get(), bounds); in SK_FLATTENABLE_HOOKS()
172 return SkPathEffectPriv::ComputeFastBounds(fPE0.get(), bounds) && in SK_FLATTENABLE_HOOKS()
173 SkPathEffectPriv::ComputeFastBounds(fPE1.get(), bounds); in SK_FLATTENABLE_HOOKS()
DSkPathEffectPriv.h17 static bool ComputeFastBounds(const SkPathEffect* pe, SkRect* bounds) { in ComputeFastBounds() function
DSkPaint.cpp376 !SkPathEffectPriv::ComputeFastBounds(this->getPathEffect(), nullptr)) { in canComputeFastBounds()
392 SkAssertResult(SkPathEffectPriv::ComputeFastBounds(this->getPathEffect(), &tmpSrc)); in doComputeFastBounds()
/external/skia/src/effects/
DSkOpPathEffect.cpp45 return (!SkToBool(fOne) || SkPathEffectPriv::ComputeFastBounds(fOne.get(), nullptr)) && in computeFastBounds()
46 (!SkToBool(fTwo) || SkPathEffectPriv::ComputeFastBounds(fTwo.get(), nullptr)); in computeFastBounds()
51 if (fOne && !SkPathEffectPriv::ComputeFastBounds(fOne.get(), bounds)) { in computeFastBounds()
54 if (fTwo && !SkPathEffectPriv::ComputeFastBounds(fTwo.get(), &b2)) { in computeFastBounds()
/external/skia/src/gpu/
DGrStyle.h175 if (this->pathEffect() && !SkPathEffectPriv::ComputeFastBounds(this->pathEffect(), dst)) { in adjustBounds()