Home | History | Annotate | Download | only in imagefilters

Lines Matching defs:srcBounds

254                                                         const SkIRect& srcBounds) const {
257 filterPixels<ClampPixelFetcher>(src, result, offset, rect, srcBounds);
260 filterPixels<RepeatPixelFetcher>(src, result, offset, rect, srcBounds);
263 filterPixels<ClampToBlackPixelFetcher>(src, result, offset, rect, srcBounds);
326 SkIRect srcBounds = this->onFilterNodeBounds(dstBounds, ctx.ctm(), kReverse_MapDirection,
330 srcBounds = DetermineRepeatedSrcBound(srcBounds, fKernelOffset,
333 if (!srcBounds.intersect(dstBounds)) {
356 srcBounds.offset(-inputOffset);
359 srcBounds,
404 srcBounds.offset(-inputOffset);
429 this->filterBorderPixels(inputBM, &dst, dstContentOffset, top, srcBounds);
430 this->filterBorderPixels(inputBM, &dst, dstContentOffset, left, srcBounds);
431 this->filterInteriorPixels(inputBM, &dst, dstContentOffset, interior, srcBounds);
432 this->filterBorderPixels(inputBM, &dst, dstContentOffset, right, srcBounds);
433 this->filterBorderPixels(inputBM, &dst, dstContentOffset, bottom, srcBounds);