| Index: src/core/SkMatrixImageFilter.h
|
| diff --git a/src/core/SkMatrixImageFilter.h b/src/core/SkMatrixImageFilter.h
|
| index 4d5b52d127139f3e34216b66636ce50d8bf4c053..0631a8b8c4417a3af1a8c9ee8db00ddba3212aaf 100644
|
| --- a/src/core/SkMatrixImageFilter.h
|
| +++ b/src/core/SkMatrixImageFilter.h
|
| @@ -33,7 +33,7 @@ public:
|
| SkImageFilter* input = nullptr);
|
| virtual ~SkMatrixImageFilter();
|
|
|
| - void computeFastBounds(const SkRect&, SkRect*) const override;
|
| + SkRect computeFastBounds(const SkRect&) const override;
|
|
|
| SK_TO_STRING_OVERRIDE()
|
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkMatrixImageFilter)
|
| @@ -46,8 +46,7 @@ protected:
|
|
|
| bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&,
|
| SkBitmap* result, SkIPoint* loc) const override;
|
| - void onFilterNodeBounds(const SkIRect& src, const SkMatrix&,
|
| - SkIRect* dst, MapDirection) const override;
|
| + SkIRect onFilterNodeBounds(const SkIRect& src, const SkMatrix&, MapDirection) const override;
|
|
|
| private:
|
| SkMatrix fTransform;
|
|
|