| 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 #include "SkColorFilterImageFilter.h" | 8 #include "SkColorFilterImageFilter.h" |
| 9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 *filter = SkRef(fColorFilter); | 94 *filter = SkRef(fColorFilter); |
| 95 } | 95 } |
| 96 return true; | 96 return true; |
| 97 } | 97 } |
| 98 return false; | 98 return false; |
| 99 } | 99 } |
| 100 | 100 |
| 101 #ifndef SK_IGNORE_TO_STRING | 101 #ifndef SK_IGNORE_TO_STRING |
| 102 void SkColorFilterImageFilter::toString(SkString* str) const { | 102 void SkColorFilterImageFilter::toString(SkString* str) const { |
| 103 str->appendf("SkColorFilterImageFilter: ("); | 103 str->appendf("SkColorFilterImageFilter: ("); |
| 104 this->getCropRect().toString(str); |
| 104 | 105 |
| 105 str->appendf("input: ("); | 106 str->appendf("input: ("); |
| 106 | 107 |
| 107 if (this->getInput(0)) { | 108 if (this->getInput(0)) { |
| 108 this->getInput(0)->toString(str); | 109 this->getInput(0)->toString(str); |
| 109 } | 110 } |
| 110 | 111 |
| 111 str->appendf(") color filter: "); | 112 str->appendf(") color filter: "); |
| 112 fColorFilter->toString(str); | 113 fColorFilter->toString(str); |
| 113 | 114 |
| 114 str->append(")"); | 115 str->append(")"); |
| 115 } | 116 } |
| 116 #endif | 117 #endif |
| OLD | NEW |