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 |
(...skipping 11 matching lines...) Expand all Loading... | |
22 RadialGradientContext(const SkRadialGradient&, const ContextRec&); | 22 RadialGradientContext(const SkRadialGradient&, const ContextRec&); |
23 | 23 |
24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override; | 24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override; |
25 void shadeSpan16(int x, int y, uint16_t dstC[], int count) override; | 25 void shadeSpan16(int x, int y, uint16_t dstC[], int count) override; |
26 | 26 |
27 private: | 27 private: |
28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; | 28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; |
29 }; | 29 }; |
30 | 30 |
31 GradientType asAGradient(GradientInfo* info) const override; | 31 GradientType asAGradient(GradientInfo* info) const override; |
32 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, | 32 #if SK_SUPPORT_GPU |
33 const SkMatrix*, GrColor*, GrProcessorDataManager*, | 33 const GrFragmentProcessor* asFragmentProcessor(GrContext*, const SkMatrix& v iewM, |
robertphillips
2015/08/28 21:33:06
tabs ?
bsalomon
2015/08/29 01:42:50
Done.
| |
34 GrFragmentProcessor**) const override; | 34 const SkMatrix*, SkFilterQuality, GrProcessorDataManager*) const overrid e; |
35 #endif | |
35 | 36 |
36 SK_TO_STRING_OVERRIDE() | 37 SK_TO_STRING_OVERRIDE() |
37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) | 38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) |
38 | 39 |
39 protected: | 40 protected: |
40 SkRadialGradient(SkReadBuffer& buffer); | 41 SkRadialGradient(SkReadBuffer& buffer); |
41 void flatten(SkWriteBuffer& buffer) const override; | 42 void flatten(SkWriteBuffer& buffer) const override; |
42 Context* onCreateContext(const ContextRec&, void* storage) const override; | 43 Context* onCreateContext(const ContextRec&, void* storage) const override; |
43 | 44 |
44 private: | 45 private: |
45 const SkPoint fCenter; | 46 const SkPoint fCenter; |
46 const SkScalar fRadius; | 47 const SkScalar fRadius; |
47 | 48 |
48 friend class SkGradientShader; | 49 friend class SkGradientShader; |
49 typedef SkGradientShaderBase INHERITED; | 50 typedef SkGradientShaderBase INHERITED; |
50 }; | 51 }; |
51 | 52 |
52 #endif | 53 #endif |
OLD | NEW |