Index: src/core/SkImageFilter.cpp |
diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp |
index cda635b4fbf1d8b6d6b2a72c3ff232013fefb060..d62685a17c4e26322326c24ae2d465bac2584c82 100644 |
--- a/src/core/SkImageFilter.cpp |
+++ b/src/core/SkImageFilter.cpp |
@@ -93,15 +93,15 @@ void SkImageFilter::flatten(SkFlattenableWriteBuffer& buffer) const { |
bool SkImageFilter::filterImage(Proxy* proxy, const SkBitmap& src, |
const SkMatrix& ctm, |
- SkBitmap* result, SkIPoint* loc) { |
+ SkBitmap* result, SkIPoint* offset) { |
SkASSERT(result); |
- SkASSERT(loc); |
+ SkASSERT(offset); |
/* |
* Give the proxy first shot at the filter. If it returns false, ask |
* the filter to do it. |
*/ |
- return (proxy && proxy->filterImage(this, src, ctm, result, loc)) || |
- this->onFilterImage(proxy, src, ctm, result, loc); |
+ return (proxy && proxy->filterImage(this, src, ctm, result, offset)) || |
+ this->onFilterImage(proxy, src, ctm, result, offset); |
} |
bool SkImageFilter::filterBounds(const SkIRect& src, const SkMatrix& ctm, |