| 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 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 | 32 |
| 33 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, | 33 #if SK_SUPPORT_GPU |
| 34 const SkMatrix*, GrColor*, GrProcessorDataManager*, | 34 const GrFragmentProcessor* asFragmentProcessor(GrContext*, |
| 35 GrFragmentProcessor**) const override; | 35 const SkMatrix& viewM, |
| 36 const SkMatrix*, |
| 37 SkFilterQuality, |
| 38 GrProcessorDataManager*) cons
t override; |
| 39 #endif |
| 36 | 40 |
| 37 SK_TO_STRING_OVERRIDE() | 41 SK_TO_STRING_OVERRIDE() |
| 38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) | 42 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) |
| 39 | 43 |
| 40 protected: | 44 protected: |
| 41 void flatten(SkWriteBuffer& buffer) const override; | 45 void flatten(SkWriteBuffer& buffer) const override; |
| 42 Context* onCreateContext(const ContextRec&, void* storage) const override; | 46 Context* onCreateContext(const ContextRec&, void* storage) const override; |
| 43 | 47 |
| 44 private: | 48 private: |
| 45 const SkPoint fCenter; | 49 const SkPoint fCenter; |
| 46 | 50 |
| 47 friend class SkGradientShader; | 51 friend class SkGradientShader; |
| 48 typedef SkGradientShaderBase INHERITED; | 52 typedef SkGradientShaderBase INHERITED; |
| 49 }; | 53 }; |
| 50 | 54 |
| 51 #endif | 55 #endif |
| OLD | NEW |