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

Side by Side Diff: src/effects/gradients/SkSweepGradient.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
« 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);
17 18
18 virtual SkShader::Context* createContext(const SkBitmap&, const SkPaint&, co nst SkMatrix&, 19 virtual SkShader::Context* createContext(const SkBitmap&, const SkPaint&, co nst SkMatrix&,
19 void* storage) const SK_OVERRIDE; 20 void* storage) const SK_OVERRIDE;
20 virtual size_t contextSize() const SK_OVERRIDE; 21 virtual size_t contextSize() const SK_OVERRIDE;
21 22
22 class SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context { 23 class SweepGradientContext : public SkGradientShaderBase::GradientShaderBase Context {
23 public: 24 public:
24 SweepGradientContext(const SkSweepGradient& shader, const SkBitmap& devi ce, 25 SweepGradientContext(const SkSweepGradient& shader, const SkBitmap& devi ce,
25 const SkPaint& paint, const SkMatrix& matrix); 26 const SkPaint& paint, const SkMatrix& matrix);
26 ~SweepGradientContext() {} 27 ~SweepGradientContext() {}
(...skipping 20 matching lines...) Expand all
47 SkSweepGradient(SkReadBuffer& buffer); 48 SkSweepGradient(SkReadBuffer& buffer);
48 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 49 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
49 50
50 private: 51 private:
51 const SkPoint fCenter; 52 const SkPoint fCenter;
52 53
53 typedef SkGradientShaderBase INHERITED; 54 typedef SkGradientShaderBase INHERITED;
54 }; 55 };
55 56
56 #endif 57 #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