OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 SkComposeImageFilter_DEFINED | 8 #ifndef SkComposeImageFilter_DEFINED |
9 #define SkComposeImageFilter_DEFINED | 9 #define SkComposeImageFilter_DEFINED |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 void computeFastBounds(const SkRect& src, SkRect* dst) const override; | 27 void computeFastBounds(const SkRect& src, SkRect* dst) const override; |
28 | 28 |
29 SK_TO_STRING_OVERRIDE() | 29 SK_TO_STRING_OVERRIDE() |
30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) | 30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) |
31 | 31 |
32 protected: | 32 protected: |
33 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input
s) { | 33 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input
s) { |
34 SkASSERT(inputs[0]); | 34 SkASSERT(inputs[0]); |
35 SkASSERT(inputs[1]); | 35 SkASSERT(inputs[1]); |
36 } | 36 } |
37 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 37 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, |
38 SkBitmap* result, SkIPoint* loc) const override; | 38 SkBitmap* result, SkIPoint* loc) const override
; |
39 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirection)
const override; | 39 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirection)
const override; |
40 | 40 |
41 private: | 41 private: |
42 typedef SkImageFilter INHERITED; | 42 typedef SkImageFilter INHERITED; |
43 }; | 43 }; |
44 | 44 |
45 #endif | 45 #endif |
OLD | NEW |