Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Side by Side Diff: src/effects/gradients/SkSweepGradient.cpp

Issue 15893002: Add flag to gradients to interpolate colors in premul space. Experimental API to encapsulate the sh… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/effects/gradients/SkGradientShaderPriv.h ('k') | src/effects/gradients/SkTwoPointConicalGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698