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

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

Issue 461643002: add localMatrix to gradient Descriptor (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « src/effects/gradients/SkLinearGradient.cpp ('k') | src/effects/gradients/SkRadialGradient.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 SkRadialGradient_DEFINED 9 #ifndef SkRadialGradient_DEFINED
10 #define SkRadialGradient_DEFINED 10 #define SkRadialGradient_DEFINED
11 11
12 #include "SkGradientShaderPriv.h" 12 #include "SkGradientShaderPriv.h"
13 13
14 class SkRadialGradient : public SkGradientShaderBase { 14 class SkRadialGradient : public SkGradientShaderBase {
15 public: 15 public:
16 SkRadialGradient(const SkPoint& center, SkScalar radius, const Descriptor&, 16 SkRadialGradient(const SkPoint& center, SkScalar radius, const Descriptor&);
17 const SkMatrix* localMatrix);
18 17
19 virtual size_t contextSize() const SK_OVERRIDE; 18 virtual size_t contextSize() const SK_OVERRIDE;
20 19
21 class RadialGradientContext : public SkGradientShaderBase::GradientShaderBas eContext { 20 class RadialGradientContext : public SkGradientShaderBase::GradientShaderBas eContext {
22 public: 21 public:
23 RadialGradientContext(const SkRadialGradient&, const ContextRec&); 22 RadialGradientContext(const SkRadialGradient&, const ContextRec&);
24 23
25 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE; 24 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE;
26 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE; 25 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE;
27 26
(...skipping 15 matching lines...) Expand all
43 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 42 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
44 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 43 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
45 44
46 private: 45 private:
47 typedef SkGradientShaderBase INHERITED; 46 typedef SkGradientShaderBase INHERITED;
48 const SkPoint fCenter; 47 const SkPoint fCenter;
49 const SkScalar fRadius; 48 const SkScalar fRadius;
50 }; 49 };
51 50
52 #endif 51 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkLinearGradient.cpp ('k') | src/effects/gradients/SkRadialGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698