OLD | NEW |
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 Loading... |
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 |
OLD | NEW |