OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 _SkTestImageFilters_h | 8 #ifndef _SkTestImageFilters_h |
9 #define _SkTestImageFilters_h | 9 #define _SkTestImageFilters_h |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 return NULL; | 23 return NULL; |
24 } | 24 } |
25 return new SkDownSampleImageFilter(scale, input); | 25 return new SkDownSampleImageFilter(scale, input); |
26 } | 26 } |
27 | 27 |
28 SK_TO_STRING_OVERRIDE() | 28 SK_TO_STRING_OVERRIDE() |
29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter) | 29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter) |
30 | 30 |
31 protected: | 31 protected: |
32 void flatten(SkWriteBuffer&) const override; | 32 void flatten(SkWriteBuffer&) const override; |
33 bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, SkBitmap* re
sult, | 33 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk
Bitmap* result, |
34 SkIPoint* loc) const override; | 34 SkIPoint* loc) const override; |
35 | 35 |
36 private: | 36 private: |
37 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input) | 37 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input) |
38 : INHERITED(1, &input), fScale(scale) {} | 38 : INHERITED(1, &input), fScale(scale) {} |
39 | 39 |
40 SkScalar fScale; | 40 SkScalar fScale; |
41 | 41 |
42 typedef SkImageFilter INHERITED; | 42 typedef SkImageFilter INHERITED; |
43 }; | 43 }; |
44 | 44 |
45 #endif | 45 #endif |
OLD | NEW |