| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkLinearGradient_DEFINED | 8 #ifndef SkLinearGradient_DEFINED |
| 9 #define SkLinearGradient_DEFINED | 9 #define SkLinearGradient_DEFINED |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 SK_TO_STRING_OVERRIDE() | 36 SK_TO_STRING_OVERRIDE() |
| 37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) | 37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) |
| 38 | 38 |
| 39 protected: | 39 protected: |
| 40 SkLinearGradient(SkReadBuffer& buffer); | 40 SkLinearGradient(SkReadBuffer& buffer); |
| 41 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; | 41 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; |
| 42 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_
OVERRIDE; | 42 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_
OVERRIDE; |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 friend class SkGradientShader; |
| 45 typedef SkGradientShaderBase INHERITED; | 46 typedef SkGradientShaderBase INHERITED; |
| 46 const SkPoint fStart; | 47 const SkPoint fStart; |
| 47 const SkPoint fEnd; | 48 const SkPoint fEnd; |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 #endif | 51 #endif |
| OLD | NEW |