| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 4 * | 3 * |
| 5 * 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 |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | 8 |
| 10 #include "Sk2DPathEffect.h" | 9 #include "Sk2DPathEffect.h" |
| 11 #include "SkReadBuffer.h" | 10 #include "SkReadBuffer.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 153 } |
| 155 | 154 |
| 156 #ifndef SK_IGNORE_TO_STRING | 155 #ifndef SK_IGNORE_TO_STRING |
| 157 void SkPath2DPathEffect::toString(SkString* str) const { | 156 void SkPath2DPathEffect::toString(SkString* str) const { |
| 158 str->appendf("SkPath2DPathEffect: ("); | 157 str->appendf("SkPath2DPathEffect: ("); |
| 159 this->INHERITED::toString(str); | 158 this->INHERITED::toString(str); |
| 160 // TODO: print out path information | 159 // TODO: print out path information |
| 161 str->appendf(")"); | 160 str->appendf(")"); |
| 162 } | 161 } |
| 163 #endif | 162 #endif |
| OLD | NEW |