Searched defs:outerWeight (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp512 int outerWeight = 255 - SkScalarRoundToInt((SkIntToScalar(rx) - passRadius) * 255); local
515 SkASSERT((unsigned)outerWeight <= 255);
552 if (outerWeight == 255) {
571 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight);
572 w = boxBlurInterp(tp, w, dp, rx, w, h, false, outerWeight);
573 w = boxBlurInterp(dp, w, tp, rx, w, h, true, outerWeight);
575 h = boxBlurInterp(tp, h, dp, ry, h, w, false, outerWeight);
576 h = boxBlurInterp(dp, h, tp, ry, h, w, false, outerWeight);
577 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight);
579 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight);
[all...]
/external/skia/src/effects/
H A DSkBlurMask.cpp512 int outerWeight = 255 - SkScalarRoundToInt((SkIntToScalar(rx) - passRadius) * 255); local
515 SkASSERT((unsigned)outerWeight <= 255);
552 if (outerWeight == 255) {
571 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight);
572 w = boxBlurInterp(tp, w, dp, rx, w, h, false, outerWeight);
573 w = boxBlurInterp(dp, w, tp, rx, w, h, true, outerWeight);
575 h = boxBlurInterp(tp, h, dp, ry, h, w, false, outerWeight);
576 h = boxBlurInterp(dp, h, tp, ry, h, w, false, outerWeight);
577 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight);
579 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight);
[all...]

Completed in 119 milliseconds