Index: src/core/SkImageFilterUtils.cpp |
diff --git a/src/core/SkImageFilterUtils.cpp b/src/core/SkImageFilterUtils.cpp |
index 0680ccf45a78a62da8943931c8804624a2da6d30..440420ee51cd6d1921aad52220359aeb1ef353e8 100644 |
--- a/src/core/SkImageFilterUtils.cpp |
+++ b/src/core/SkImageFilterUtils.cpp |
@@ -21,13 +21,13 @@ bool SkImageFilterUtils::WrapTexture(GrTexture* texture, int width, int height, |
} |
bool SkImageFilterUtils::GetInputResultGPU(SkImageFilter* filter, SkImageFilter::Proxy* proxy, |
- const SkBitmap& src, SkBitmap* result, |
- SkIPoint* offset) { |
+ const SkBitmap& src, const SkMatrix& ctm, |
+ SkBitmap* result, SkIPoint* offset) { |
if (!filter) { |
*result = src; |
return true; |
} else if (filter->canFilterImageGPU()) { |
- return filter->filterImageGPU(proxy, src, result, offset); |
+ return filter->filterImageGPU(proxy, src, ctm, result, offset); |
} else { |
SkMatrix matrix; |
matrix.reset(); |