| Index: src/effects/SkColorFilterImageFilter.cpp
|
| diff --git a/src/effects/SkColorFilterImageFilter.cpp b/src/effects/SkColorFilterImageFilter.cpp
|
| index 5b97d1bc362f8447c4e0d67ae39a2fae34ec1418..96ce5d9690588867945886330a4dc723b4450fd9 100644
|
| --- a/src/effects/SkColorFilterImageFilter.cpp
|
| +++ b/src/effects/SkColorFilterImageFilter.cpp
|
| @@ -55,13 +55,13 @@ SkColorFilterImageFilter::~SkColorFilterImageFilter() {
|
| fColorFilter->unref();
|
| }
|
|
|
| -bool SkColorFilterImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source,
|
| - const Context& ctx,
|
| - SkBitmap* result,
|
| - SkIPoint* offset) const {
|
| +bool SkColorFilterImageFilter::onFilterImageDeprecated(Proxy* proxy, const SkBitmap& source,
|
| + const Context& ctx,
|
| + SkBitmap* result,
|
| + SkIPoint* offset) const {
|
| SkBitmap src = source;
|
| SkIPoint srcOffset = SkIPoint::Make(0, 0);
|
| - if (!this->filterInput(0, proxy, source, ctx, &src, &srcOffset)) {
|
| + if (!this->filterInputDeprecated(0, proxy, source, ctx, &src, &srcOffset)) {
|
| return false;
|
| }
|
|
|
|
|