Index: src/core/SkLocalMatrixImageFilter.cpp |
diff --git a/src/core/SkLocalMatrixImageFilter.cpp b/src/core/SkLocalMatrixImageFilter.cpp |
index 10d63ede66ed3b3c55e52fb691fe8b372e955dcd..4fd6b3562ee45ff511a43b6bf51aa977cc976240 100644 |
--- a/src/core/SkLocalMatrixImageFilter.cpp |
+++ b/src/core/SkLocalMatrixImageFilter.cpp |
@@ -40,8 +40,8 @@ void SkLocalMatrixImageFilter::flatten(SkWriteBuffer& buffer) const { |
bool SkLocalMatrixImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx, |
SkBitmap* result, SkIPoint* offset) const { |
- Context localCtx(SkMatrix::Concat(ctx.ctm(), fLocalM), ctx.clipBounds(), ctx.cache()); |
- return this->filterInput(0, proxy, src, localCtx, result, offset); |
+ Context localCtx(ctx, SkMatrix::Concat(ctx.ctm(), fLocalM)); |
+ return this->filterInput(0, proxy, src, localCtx, result, offset, false); |
} |
bool SkLocalMatrixImageFilter::onFilterBounds(const SkIRect& src, const SkMatrix& matrix, |