| Index: include/effects/SkBlurImageFilter.h
|
| diff --git a/include/effects/SkBlurImageFilter.h b/include/effects/SkBlurImageFilter.h
|
| index d6b506621d18d7b77e36777fa5ddb97c858fb172..d634c0e3c3f048790ef0fcc3dc757b38d02cb81d 100644
|
| --- a/include/effects/SkBlurImageFilter.h
|
| +++ b/include/effects/SkBlurImageFilter.h
|
| @@ -33,14 +33,14 @@ protected:
|
| uint32_t uniqueID);
|
| void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
|
|
| - virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
| - SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE;
|
| + virtual bool onFilterImage(Proxy*, SkImage& src, const Context&,
|
| + SkAutoTUnref<SkImage>& result, SkIPoint* offset) const SK_OVERRIDE;
|
| virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&,
|
| SkIRect* dst) const SK_OVERRIDE;
|
|
|
| bool canFilterImageGPU() const SK_OVERRIDE { return true; }
|
| - virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx,
|
| - SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE;
|
| + virtual bool filterImageGPU(Proxy* proxy, SkImage& src, const Context& ctx,
|
| + SkAutoTUnref<SkImage>& result, SkIPoint* offset) const SK_OVERRIDE;
|
|
|
| private:
|
| SkSize fSigma;
|
|
|