Index: src/effects/SkTileImageFilter.cpp |
diff --git a/src/effects/SkTileImageFilter.cpp b/src/effects/SkTileImageFilter.cpp |
index 01f9d29305a10d14334059606a122875f2e51c24..66cad47ad031dda661e88d0ef5df09bb55cc2409 100644 |
--- a/src/effects/SkTileImageFilter.cpp |
+++ b/src/effects/SkTileImageFilter.cpp |
@@ -35,12 +35,12 @@ SkImageFilter* SkTileImageFilter::Create(const SkRect& srcRect, const SkRect& ds |
return new SkTileImageFilter(srcRect, dstRect, input); |
} |
-bool SkTileImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, |
- const Context& ctx, |
- SkBitmap* dst, SkIPoint* offset) const { |
+bool SkTileImageFilter::onFilterImageDeprecated(Proxy* proxy, const SkBitmap& src, |
+ const Context& ctx, |
+ SkBitmap* dst, SkIPoint* offset) const { |
SkBitmap source = src; |
SkIPoint srcOffset = SkIPoint::Make(0, 0); |
- if (!this->filterInput(0, proxy, src, ctx, &source, &srcOffset)) { |
+ if (!this->filterInputDeprecated(0, proxy, src, ctx, &source, &srcOffset)) { |
return false; |
} |