| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkPaintImageFilter_DEFINED | 8 #ifndef SkPaintImageFilter_DEFINED |
| 9 #define SkPaintImageFilter_DEFINED | 9 #define SkPaintImageFilter_DEFINED |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 static SkImageFilter* Create(const SkPaint& paint, const CropRect* rect = NU
LL); | 25 static SkImageFilter* Create(const SkPaint& paint, const CropRect* rect = NU
LL); |
| 26 | 26 |
| 27 bool canComputeFastBounds() const override; | 27 bool canComputeFastBounds() const override; |
| 28 | 28 |
| 29 SK_TO_STRING_OVERRIDE() | 29 SK_TO_STRING_OVERRIDE() |
| 30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPaintImageFilter) | 30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPaintImageFilter) |
| 31 | 31 |
| 32 protected: | 32 protected: |
| 33 void flatten(SkWriteBuffer&) const override; | 33 void flatten(SkWriteBuffer&) const override; |
| 34 SkSpecialImage* onFilterImage(SkSpecialImage* source, const Context&, | 34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&, |
| 35 SkIPoint* offset) const override; | 35 SkIPoint* offset) const override; |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 SkPaintImageFilter(const SkPaint& paint, const CropRect* rect); | 38 SkPaintImageFilter(const SkPaint& paint, const CropRect* rect); |
| 39 | 39 |
| 40 SkPaint fPaint; | 40 SkPaint fPaint; |
| 41 | 41 |
| 42 typedef SkImageFilter INHERITED; | 42 typedef SkImageFilter INHERITED; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif | 45 #endif |
| OLD | NEW |