Home
last modified time | relevance | path

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

/external/skia/src/effects/
DSkBlurMask.cpp518 int outerWeight = 255 - SkScalarRoundToInt((SkIntToScalar(rx) - passRadius) * 255); in BoxBlur() local
521 SkASSERT((unsigned)outerWeight <= 255); in BoxBlur()
557 if (outerWeight == 255) { in BoxBlur()
576 w = boxBlurInterp<false>(sp, src.fRowBytes, tp, rx, w, h, outerWeight); in BoxBlur()
577 w = boxBlurInterp<false>(tp, w, dp, rx, w, h, outerWeight); in BoxBlur()
578 w = boxBlurInterp<true>(dp, w, tp, rx, w, h, outerWeight); in BoxBlur()
580 h = boxBlurInterp<false>(tp, h, dp, ry, h, w, outerWeight); in BoxBlur()
581 h = boxBlurInterp<false>(dp, h, tp, ry, h, w, outerWeight); in BoxBlur()
582 h = boxBlurInterp<true>(tp, h, dp, ry, h, w, outerWeight); in BoxBlur()
584 w = boxBlurInterp<true>(sp, src.fRowBytes, tp, rx, w, h, outerWeight); in BoxBlur()
[all …]