Home
last modified time | relevance | path

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

/third_party/skia/src/core/
DSkImageFilter.cpp659 const SkIRect& originalSrcBounds) { in DetermineRepeatedSrcBound() argument
664 if (tmp.fLeft < originalSrcBounds.fLeft || tmp.fRight > originalSrcBounds.fRight) { in DetermineRepeatedSrcBound()
665 tmp.fLeft = originalSrcBounds.fLeft; in DetermineRepeatedSrcBound()
666 tmp.fRight = originalSrcBounds.fRight; in DetermineRepeatedSrcBound()
668 if (tmp.fTop < originalSrcBounds.fTop || tmp.fBottom > originalSrcBounds.fBottom) { in DetermineRepeatedSrcBound()
669 tmp.fTop = originalSrcBounds.fTop; in DetermineRepeatedSrcBound()
670 tmp.fBottom = originalSrcBounds.fBottom; in DetermineRepeatedSrcBound()
DSkImageFilter_Base.h335 const SkIRect& originalSrcBounds);
/third_party/skia/src/effects/imagefilters/
DSkMatrixConvolutionImageFilter.cpp345 const SkIRect originalSrcBounds = SkIRect::MakeXYWH(inputOffset.fX, inputOffset.fY, in onFilterImage() local
349 &originalSrcBounds); in onFilterImage()
353 fKernelSize, originalSrcBounds); in onFilterImage()