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 13 matching lines...) Expand all Loading... |
24 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect, uniqueI
D)); | 24 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect, uniqueI
D)); |
25 } | 25 } |
26 void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE; | 26 void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE; |
27 SK_TO_STRING_OVERRIDE() | 27 SK_TO_STRING_OVERRIDE() |
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) | 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) |
29 | 29 |
30 protected: | 30 protected: |
31 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr
opRect* cropRect, uint32_t uniqueID); | 31 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr
opRect* cropRect, uint32_t uniqueID); |
32 void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 32 void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
33 | 33 |
34 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 34 virtual bool onFilterImage(Proxy*, SkImage& src, const Context&, |
35 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; | 35 SkAutoTUnref<SkImage>& result, SkIPoint* loc) con
st SK_OVERRIDE; |
36 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVER
RIDE; | 36 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVER
RIDE; |
37 | 37 |
38 private: | 38 private: |
39 SkVector fOffset; | 39 SkVector fOffset; |
40 }; | 40 }; |
41 | 41 |
42 #endif | 42 #endif |
OLD | NEW |