Index: src/effects/SkTileImageFilter.cpp |
diff --git a/src/effects/SkTileImageFilter.cpp b/src/effects/SkTileImageFilter.cpp |
index c3eb2f301ac91d47652c1e4f107667b5b2afa371..52ea6a756f1cfcf8e78da08debb869d0224142a7 100644 |
--- a/src/effects/SkTileImageFilter.cpp |
+++ b/src/effects/SkTileImageFilter.cpp |
@@ -28,9 +28,8 @@ bool SkTileImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, |
const Context& ctx, |
SkBitmap* dst, SkIPoint* offset) const { |
SkBitmap source = src; |
- SkImageFilter* input = getInput(0); |
SkIPoint srcOffset = SkIPoint::Make(0, 0); |
- if (input && !input->filterImage(proxy, src, ctx, &source, &srcOffset)) { |
+ if (!this->filterInput(0, proxy, src, ctx, &source, &srcOffset)) { |
return false; |
} |