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 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 #if 0 |
17 virtual void shadeSpan(int x, int y, SkPMColor* dstC, int count) | 18 virtual void shadeSpan(int x, int y, SkPMColor* dstC, int count) |
18 SK_OVERRIDE; | 19 SK_OVERRIDE; |
19 virtual void shadeSpan16(int x, int y, uint16_t* dstCParam, | 20 virtual void shadeSpan16(int x, int y, uint16_t* dstCParam, |
20 int count) SK_OVERRIDE; | 21 int count) SK_OVERRIDE; |
| 22 #endif |
21 virtual BitmapType asABitmap(SkBitmap* bitmap, | 23 virtual BitmapType asABitmap(SkBitmap* bitmap, |
22 SkMatrix* matrix, | 24 SkMatrix* matrix, |
23 TileMode* xy) const SK_OVERRIDE; | 25 TileMode* xy) const SK_OVERRIDE; |
24 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; | 26 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; |
25 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S
K_OVERRIDE; | 27 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S
K_OVERRIDE; |
26 | 28 |
27 SK_DEVELOPER_TO_STRING() | 29 SK_DEVELOPER_TO_STRING() |
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) | 30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) |
29 | 31 |
30 protected: | 32 protected: |
31 SkRadialGradient(SkReadBuffer& buffer); | 33 SkRadialGradient(SkReadBuffer& buffer); |
32 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; | 34 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; |
33 | 35 |
34 private: | 36 private: |
35 typedef SkGradientShaderBase INHERITED; | 37 typedef SkGradientShaderBase INHERITED; |
36 const SkPoint fCenter; | 38 const SkPoint fCenter; |
37 const SkScalar fRadius; | 39 const SkScalar fRadius; |
38 }; | 40 }; |
39 | 41 |
40 #endif | 42 #endif |
OLD | NEW |