| Index: src/core/SkImageFilter.cpp
|
| diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
|
| index 2d81026a566521f15065e912b2f36ef9b94ee0f4..37d1f44fd450ce7a4d96aabf34e19aae5d1e55e2 100644
|
| --- a/src/core/SkImageFilter.cpp
|
| +++ b/src/core/SkImageFilter.cpp
|
| @@ -69,20 +69,6 @@ void SkImageFilter::flatten(SkFlattenableWriteBuffer& buffer) const {
|
| }
|
| }
|
|
|
| -SkBitmap SkImageFilter::getInputResult(int index, Proxy* proxy,
|
| - const SkBitmap& src, const SkMatrix& ctm,
|
| - SkIPoint* loc) {
|
| - SkASSERT(index < fInputCount);
|
| - SkImageFilter* input = getInput(index);
|
| - SkBitmap result;
|
| - if (input && input->filterImage(proxy, src, ctm, &result, loc)) {
|
| - return result;
|
| - } else {
|
| - return src;
|
| - }
|
| -}
|
| -
|
| -
|
| bool SkImageFilter::filterImage(Proxy* proxy, const SkBitmap& src,
|
| const SkMatrix& ctm,
|
| SkBitmap* result, SkIPoint* loc) {
|
|
|