| Index: include/effects/SkMorphologyImageFilter.h
|
| diff --git a/include/effects/SkMorphologyImageFilter.h b/include/effects/SkMorphologyImageFilter.h
|
| index d63f49dab9c8cd2560bed53d3bb100ba4abda1c6..880fc2ec2c4334fb42d3ecfd8c97627b24d1dbdb 100644
|
| --- a/include/effects/SkMorphologyImageFilter.h
|
| +++ b/include/effects/SkMorphologyImageFilter.h
|
| @@ -14,7 +14,7 @@
|
|
|
| class SK_API SkMorphologyImageFilter : public SkImageFilter {
|
| public:
|
| - SkMorphologyImageFilter(int radiusX, int radiusY, SkImageFilter* input, const SkIRect* cropRect);
|
| + SkMorphologyImageFilter(int radiusX, int radiusY, SkImageFilter* input, const CropRect* cropRect);
|
|
|
| protected:
|
| SkMorphologyImageFilter(SkFlattenableReadBuffer& buffer);
|
| @@ -34,7 +34,7 @@ class SK_API SkDilateImageFilter : public SkMorphologyImageFilter {
|
| public:
|
| SkDilateImageFilter(int radiusX, int radiusY,
|
| SkImageFilter* input = NULL,
|
| - const SkIRect* cropRect = NULL)
|
| + const CropRect* cropRect = NULL)
|
| : INHERITED(radiusX, radiusY, input, cropRect) {}
|
|
|
| virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
|
| @@ -57,7 +57,7 @@ class SK_API SkErodeImageFilter : public SkMorphologyImageFilter {
|
| public:
|
| SkErodeImageFilter(int radiusX, int radiusY,
|
| SkImageFilter* input = NULL,
|
| - const SkIRect* cropRect = NULL)
|
| + const CropRect* cropRect = NULL)
|
| : INHERITED(radiusX, radiusY, input, cropRect) {}
|
|
|
| virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
|
|
|