OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #include "SkSweepGradient.h" | 9 #include "SkSweepGradient.h" |
10 | 10 |
11 SkSweepGradient::SkSweepGradient(SkScalar cx, SkScalar cy, | 11 SkSweepGradient::SkSweepGradient(SkScalar cx, SkScalar cy, |
12 const Descriptor& desc) | 12 const Descriptor& desc) |
13 : SkGradientShaderBase(desc), | 13 : SkGradientShaderBase(desc) |
14 fCenter(SkPoint::Make(cx, cy)) | 14 , fCenter(SkPoint::Make(cx, cy)) |
15 { | 15 { |
16 fPtsToUnit.setTranslate(-cx, -cy); | 16 fPtsToUnit.setTranslate(-cx, -cy); |
17 | 17 |
18 // overwrite the tilemode to a canonical value (since sweep ignores it) | 18 // overwrite the tilemode to a canonical value (since sweep ignores it) |
19 fTileMode = SkShader::kClamp_TileMode; | 19 fTileMode = SkShader::kClamp_TileMode; |
20 } | 20 } |
21 | 21 |
22 SkShader::BitmapType SkSweepGradient::asABitmap(SkBitmap* bitmap, | 22 SkShader::BitmapType SkSweepGradient::asABitmap(SkBitmap* bitmap, |
23 SkMatrix* matrix, SkShader::TileMode* xy) const { | 23 SkMatrix* matrix, SkShader::TileMode* xy) const { |
24 if (bitmap) { | 24 if (bitmap) { |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 str->appendScalar(fCenter.fX); | 508 str->appendScalar(fCenter.fX); |
509 str->append(", "); | 509 str->append(", "); |
510 str->appendScalar(fCenter.fY); | 510 str->appendScalar(fCenter.fY); |
511 str->append(") "); | 511 str->append(") "); |
512 | 512 |
513 this->INHERITED::toString(str); | 513 this->INHERITED::toString(str); |
514 | 514 |
515 str->append(")"); | 515 str->append(")"); |
516 } | 516 } |
517 #endif | 517 #endif |
OLD | NEW |