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

Side by Side Diff: src/effects/gradients/SkTwoPointRadialGradient.h

Issue 245963010: Move SkShader::fLocalMatrix into SkShader constructor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: nit Created 6 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
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 #ifndef SkTwoPointRadialGradient_DEFINED 9 #ifndef SkTwoPointRadialGradient_DEFINED
10 #define SkTwoPointRadialGradient_DEFINED 10 #define SkTwoPointRadialGradient_DEFINED
11 11
12 #include "SkGradientShaderPriv.h" 12 #include "SkGradientShaderPriv.h"
13 13
14 class SkTwoPointRadialGradient : public SkGradientShaderBase { 14 class SkTwoPointRadialGradient : public SkGradientShaderBase {
15 public: 15 public:
16 SkTwoPointRadialGradient(const SkPoint& start, SkScalar startRadius, 16 SkTwoPointRadialGradient(const SkPoint& start, SkScalar startRadius,
17 const SkPoint& end, SkScalar endRadius, 17 const SkPoint& end, SkScalar endRadius,
18 const Descriptor&); 18 const Descriptor&, const SkMatrix* localMatrix);
19 19
20 virtual BitmapType asABitmap(SkBitmap* bitmap, 20 virtual BitmapType asABitmap(SkBitmap* bitmap,
21 SkMatrix* matrix, 21 SkMatrix* matrix,
22 TileMode* xy) const SK_OVERRIDE; 22 TileMode* xy) const SK_OVERRIDE;
23 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 23 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
24 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE; 24 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE;
25 25
26 26
27 virtual size_t contextSize() const SK_OVERRIDE; 27 virtual size_t contextSize() const SK_OVERRIDE;
28 virtual bool validContext(const SkBitmap&, const SkPaint&, 28 virtual bool validContext(const SkBitmap&, const SkPaint&,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 const SkScalar fRadius2; 62 const SkScalar fRadius2;
63 SkPoint fDiff; 63 SkPoint fDiff;
64 SkScalar fStartRadius, fDiffRadius, fSr2D2, fA, fOneOverTwoA; 64 SkScalar fStartRadius, fDiffRadius, fSr2D2, fA, fOneOverTwoA;
65 65
66 void init(); 66 void init();
67 67
68 typedef SkGradientShaderBase INHERITED; 68 typedef SkGradientShaderBase INHERITED;
69 }; 69 };
70 70
71 #endif 71 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkTwoPointConicalGradient.cpp ('k') | src/effects/gradients/SkTwoPointRadialGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698