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 |
11 #include "SkImageFilter.h" | 11 #include "SkImageFilter.h" |
12 #include "SkPoint.h" | 12 #include "SkPoint.h" |
13 | 13 |
14 class SK_API SkOffsetImageFilter : public SkImageFilter { | 14 class SK_API SkOffsetImageFilter : public SkImageFilter { |
15 typedef SkImageFilter INHERITED; | 15 typedef SkImageFilter INHERITED; |
16 | 16 |
17 public: | 17 public: |
18 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, | 18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter*
input = NULL, |
19 const CropRect* cropRect = NULL); | 19 const CropRect* cropRect = NULL) { |
| 20 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect)); |
| 21 } |
20 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER
RIDE; | 22 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER
RIDE; |
21 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) | 23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) |
22 | 24 |
23 protected: | 25 protected: |
24 SkOffsetImageFilter(SkReadBuffer& buffer); | 26 SkOffsetImageFilter(SkReadBuffer& buffer); |
25 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 27 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
26 | 28 |
27 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, | 29 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, |
28 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; | 30 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; |
29 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const
SK_OVERRIDE; | 31 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const
SK_OVERRIDE; |
30 | 32 |
| 33 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS |
| 34 public: |
| 35 #endif |
| 36 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, |
| 37 const CropRect* cropRect = NULL); |
| 38 |
31 private: | 39 private: |
32 SkVector fOffset; | 40 SkVector fOffset; |
33 }; | 41 }; |
34 | 42 |
35 #endif | 43 #endif |
OLD | NEW |