| 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 10 matching lines...) Expand all Loading... |
| 21 public: | 21 public: |
| 22 SweepGradientContext(const SkSweepGradient& shader, const ContextRec&); | 22 SweepGradientContext(const SkSweepGradient& shader, 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 BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix, TileMode* xy) const
override; | |
| 32 | |
| 33 GradientType asAGradient(GradientInfo* info) const override; | 31 GradientType asAGradient(GradientInfo* info) const override; |
| 34 | 32 |
| 35 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, | 33 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, |
| 36 const SkMatrix*, GrColor*, GrProcessorDataManager*, | 34 const SkMatrix*, GrColor*, GrProcessorDataManager*, |
| 37 GrFragmentProcessor**) const override; | 35 GrFragmentProcessor**) const override; |
| 38 | 36 |
| 39 SK_TO_STRING_OVERRIDE() | 37 SK_TO_STRING_OVERRIDE() |
| 40 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) | 38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) |
| 41 | 39 |
| 42 protected: | 40 protected: |
| 43 void flatten(SkWriteBuffer& buffer) const override; | 41 void flatten(SkWriteBuffer& buffer) const override; |
| 44 Context* onCreateContext(const ContextRec&, void* storage) const override; | 42 Context* onCreateContext(const ContextRec&, void* storage) const override; |
| 45 | 43 |
| 46 private: | 44 private: |
| 47 const SkPoint fCenter; | 45 const SkPoint fCenter; |
| 48 | 46 |
| 49 friend class SkGradientShader; | 47 friend class SkGradientShader; |
| 50 typedef SkGradientShaderBase INHERITED; | 48 typedef SkGradientShaderBase INHERITED; |
| 51 }; | 49 }; |
| 52 | 50 |
| 53 #endif | 51 #endif |
| OLD | NEW |