Searched refs:boxBlurInterp (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/effects/ |
D | SkBlurMask.cpp | 280 static int boxBlurInterp(const uint8_t* src, int src_y_stride, uint8_t* dst, in boxBlurInterp() function 570 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight); in BoxBlur() 571 w = boxBlurInterp(tp, w, dp, rx, w, h, false, outerWeight); in BoxBlur() 572 w = boxBlurInterp(dp, w, tp, rx, w, h, true, outerWeight); in BoxBlur() 574 h = boxBlurInterp(tp, h, dp, ry, h, w, false, outerWeight); in BoxBlur() 575 h = boxBlurInterp(dp, h, tp, ry, h, w, false, outerWeight); in BoxBlur() 576 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight); in BoxBlur() 578 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight); in BoxBlur() 579 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight); in BoxBlur()
|