| Index: include/effects/SkMatrixImageFilter.h
|
| diff --git a/include/effects/SkMatrixImageFilter.h b/include/effects/SkMatrixImageFilter.h
|
| index d0afdc3bd91360a8aa97b82cba1b7a32e73a867b..2c11aa63a315a6240db47ac995b9edf202421bd0 100644
|
| --- a/include/effects/SkMatrixImageFilter.h
|
| +++ b/include/effects/SkMatrixImageFilter.h
|
| @@ -30,14 +30,12 @@ public:
|
|
|
| static SkMatrixImageFilter* Create(const SkMatrix& transform,
|
| SkFilterQuality,
|
| - SkImageFilter* input = NULL,
|
| - uint32_t uniqueID = 0);
|
| + SkImageFilter* input = NULL);
|
| #ifdef SK_SUPPORT_LEGACY_FILTERLEVEL_ENUM
|
| static SkMatrixImageFilter* Create(const SkMatrix& transform,
|
| SkPaint::FilterLevel level,
|
| - SkImageFilter* input = NULL,
|
| - uint32_t uniqueID = 0) {
|
| - return Create(transform, SkFilterQuality(level), input, uniqueID);
|
| + SkImageFilter* input = NULL) {
|
| + return Create(transform, SkFilterQuality(level), input);
|
| }
|
| #endif
|
| virtual ~SkMatrixImageFilter();
|
| @@ -50,8 +48,7 @@ public:
|
| protected:
|
| SkMatrixImageFilter(const SkMatrix& transform,
|
| SkFilterQuality,
|
| - SkImageFilter* input,
|
| - uint32_t uniqueID);
|
| + SkImageFilter* input);
|
| void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
|
|
| virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
|
|