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

Side by Side Diff: src/effects/gradients/SkSweepGradient.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/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.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 SkSweepGradient_DEFINED 9 #ifndef SkSweepGradient_DEFINED
10 #define SkSweepGradient_DEFINED 10 #define SkSweepGradient_DEFINED
11 11
12 #include "SkGradientShaderPriv.h" 12 #include "SkGradientShaderPriv.h"
13 13
14 class SkSweepGradient : public SkGradientShaderBase { 14 class SkSweepGradient : public SkGradientShaderBase {
15 public: 15 public:
16 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&, 16 SkSweepGradient(SkScalar cx, SkScalar cy, 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 SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context { 20 class SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context {
22 public: 21 public:
23 SweepGradientContext(const SkSweepGradient& shader, const ContextRec&); 22 SweepGradientContext(const SkSweepGradient& shader, 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 18 matching lines...) Expand all
46 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 45 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
47 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 46 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
48 47
49 private: 48 private:
50 const SkPoint fCenter; 49 const SkPoint fCenter;
51 50
52 typedef SkGradientShaderBase INHERITED; 51 typedef SkGradientShaderBase INHERITED;
53 }; 52 };
54 53
55 #endif 54 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698