OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
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 #include "SkRadialGradient.h" | 8 #include "SkRadialGradient.h" |
10 #include "SkNx.h" | 9 #include "SkNx.h" |
11 | 10 |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 str->appendScalar(fCenter.fY); | 374 str->appendScalar(fCenter.fY); |
376 str->append(") radius: "); | 375 str->append(") radius: "); |
377 str->appendScalar(fRadius); | 376 str->appendScalar(fRadius); |
378 str->append(" "); | 377 str->append(" "); |
379 | 378 |
380 this->INHERITED::toString(str); | 379 this->INHERITED::toString(str); |
381 | 380 |
382 str->append(")"); | 381 str->append(")"); |
383 } | 382 } |
384 #endif | 383 #endif |
OLD | NEW |