| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The Android Open Source Project | 2 * Copyright 2012 The Android Open Source Project |
| 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 SkOffsetImageFilter_DEFINED | 8 #ifndef SkOffsetImageFilter_DEFINED |
| 9 #define SkOffsetImageFilter_DEFINED | 9 #define SkOffsetImageFilter_DEFINED |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 void computeFastBounds(const SkRect& src, SkRect* dst) const override; | 24 void computeFastBounds(const SkRect& src, SkRect* dst) const override; |
| 25 | 25 |
| 26 SK_TO_STRING_OVERRIDE() | 26 SK_TO_STRING_OVERRIDE() |
| 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) | 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) |
| 28 | 28 |
| 29 protected: | 29 protected: |
| 30 void flatten(SkWriteBuffer&) const override; | 30 void flatten(SkWriteBuffer&) const override; |
| 31 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk
Bitmap* result, | 31 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk
Bitmap* result, |
| 32 SkIPoint* loc) const override; | 32 SkIPoint* loc) const override; |
| 33 SkSpecialImage* onFilterImage(SkSpecialImage* src, const Context&, |
| 34 SkIPoint* offset) const override; |
| 33 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirect
ion) const override; | 35 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirect
ion) const override; |
| 34 | 36 |
| 35 private: | 37 private: |
| 36 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr
opRect*); | 38 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr
opRect*); |
| 37 | 39 |
| 38 SkVector fOffset; | 40 SkVector fOffset; |
| 39 | 41 |
| 40 typedef SkImageFilter INHERITED; | 42 typedef SkImageFilter INHERITED; |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 #endif | 45 #endif |
| OLD | NEW |