| 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 15 matching lines...) Expand all Loading... |
| 26 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV
ERRIDE; | 26 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV
ERRIDE; |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; | 29 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; |
| 30 }; | 30 }; |
| 31 | 31 |
| 32 virtual BitmapType asABitmap(SkBitmap* bitmap, | 32 virtual BitmapType asABitmap(SkBitmap* bitmap, |
| 33 SkMatrix* matrix, | 33 SkMatrix* matrix, |
| 34 TileMode* xy) const SK_OVERRIDE; | 34 TileMode* xy) const SK_OVERRIDE; |
| 35 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; | 35 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; |
| 36 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo
r*, GrEffect**) const SK_OVERRIDE; | 36 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo
r*, GrEffectRef**) const SK_OVERRIDE; |
| 37 | 37 |
| 38 SK_TO_STRING_OVERRIDE() | 38 SK_TO_STRING_OVERRIDE() |
| 39 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) | 39 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) |
| 40 | 40 |
| 41 protected: | 41 protected: |
| 42 SkRadialGradient(SkReadBuffer& buffer); | 42 SkRadialGradient(SkReadBuffer& buffer); |
| 43 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; | 43 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; |
| 44 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_
OVERRIDE; | 44 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_
OVERRIDE; |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 typedef SkGradientShaderBase INHERITED; | 47 typedef SkGradientShaderBase INHERITED; |
| 48 const SkPoint fCenter; | 48 const SkPoint fCenter; |
| 49 const SkScalar fRadius; | 49 const SkScalar fRadius; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 #endif | 52 #endif |
| OLD | NEW |