| 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 #endif | 27 #endif |
| 28 | 28 |
| 29 protected: | 29 protected: |
| 30 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(in
puts, 2, nullptr) { | 30 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(in
puts, 2, nullptr) { |
| 31 SkASSERT(inputs[0].get()); | 31 SkASSERT(inputs[0].get()); |
| 32 SkASSERT(inputs[1].get()); | 32 SkASSERT(inputs[1].get()); |
| 33 } | 33 } |
| 34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&, | 34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&, |
| 35 SkIPoint* offset) const override; | 35 SkIPoint* offset) const override; |
| 36 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const
override; | 36 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const
override; |
| 37 bool onCanHandleComplexCTM() const override { return true; } |
| 37 | 38 |
| 38 private: | 39 private: |
| 39 typedef SkImageFilter INHERITED; | 40 typedef SkImageFilter INHERITED; |
| 40 }; | 41 }; |
| 41 | 42 |
| 42 #endif | 43 #endif |
| OLD | NEW |