| 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 14 matching lines...) Expand all Loading... |
| 25 return SkNEW_ARGS(SkComposeImageFilter, (inputs)); | 25 return SkNEW_ARGS(SkComposeImageFilter, (inputs)); |
| 26 } | 26 } |
| 27 | 27 |
| 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) | 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) |
| 29 | 29 |
| 30 protected: | 30 protected: |
| 31 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input
s) { | 31 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input
s) { |
| 32 SkASSERT(inputs[0]); | 32 SkASSERT(inputs[0]); |
| 33 SkASSERT(inputs[1]); | 33 SkASSERT(inputs[1]); |
| 34 } | 34 } |
| 35 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING |
| 36 explicit SkComposeImageFilter(SkReadBuffer& buffer); |
| 37 #endif |
| 38 |
| 35 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 39 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, |
| 36 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; | 40 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; |
| 37 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const
SK_OVERRIDE; | 41 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const
SK_OVERRIDE; |
| 38 | 42 |
| 39 private: | 43 private: |
| 40 typedef SkImageFilter INHERITED; | 44 typedef SkImageFilter INHERITED; |
| 41 }; | 45 }; |
| 42 | 46 |
| 43 #endif | 47 #endif |
| OLD | NEW |