| Index: src/core/SkImageFilter.cpp
|
| diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
|
| index 384f2dce6be9d26cb15db21347c5ec09fa164d94..cd7c01b4e67e66cf55fda7dd21849f53574c5462 100644
|
| --- a/src/core/SkImageFilter.cpp
|
| +++ b/src/core/SkImageFilter.cpp
|
| @@ -94,7 +94,7 @@ void SkImageFilter::flatten(SkWriteBuffer& buffer) const {
|
|
|
| bool SkImageFilter::filterImage(Proxy* proxy, const SkBitmap& src,
|
| const SkMatrix& ctm,
|
| - SkBitmap* result, SkIPoint* offset) {
|
| + SkBitmap* result, SkIPoint* offset) const {
|
| SkASSERT(result);
|
| SkASSERT(offset);
|
| /*
|
| @@ -135,7 +135,7 @@ void SkImageFilter::computeFastBounds(const SkRect& src, SkRect* dst) const {
|
| }
|
|
|
| bool SkImageFilter::onFilterImage(Proxy*, const SkBitmap&, const SkMatrix&,
|
| - SkBitmap*, SkIPoint*) {
|
| + SkBitmap*, SkIPoint*) const {
|
| return false;
|
| }
|
|
|
| @@ -144,7 +144,7 @@ bool SkImageFilter::canFilterImageGPU() const {
|
| }
|
|
|
| bool SkImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatrix& ctm,
|
| - SkBitmap* result, SkIPoint* offset) {
|
| + SkBitmap* result, SkIPoint* offset) const {
|
| #if SK_SUPPORT_GPU
|
| SkBitmap input;
|
| SkASSERT(fInputCount == 1);
|
|
|