| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2007 The Android Open Source Project | 2 * Copyright 2007 The Android Open Source Project |
| 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 SkColorShader_DEFINED | 8 #ifndef SkColorShader_DEFINED |
| 9 #define SkColorShader_DEFINED | 9 #define SkColorShader_DEFINED |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 private: | 42 private: |
| 43 SkPMColor fPMColor; | 43 SkPMColor fPMColor; |
| 44 uint32_t fFlags; | 44 uint32_t fFlags; |
| 45 uint16_t fColor16; | 45 uint16_t fColor16; |
| 46 | 46 |
| 47 typedef SkShader::Context INHERITED; | 47 typedef SkShader::Context INHERITED; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 GradientType asAGradient(GradientInfo* info) const override; | 50 GradientType asAGradient(GradientInfo* info) const override; |
| 51 | 51 |
| 52 #if SK_SUPPORT_GPU | 52 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, |
| 53 const GrFragmentProcessor* asFragmentProcessor(GrContext*, const SkMatrix& v
iewM, | 53 const SkMatrix*, GrColor*, GrProcessorDataManager*, |
| 54 const SkMatrix*, SkFilterQual
ity, | 54 GrFragmentProcessor**) const override; |
| 55 GrProcessorDataManager*) cons
t override; | |
| 56 #endif | |
| 57 | 55 |
| 58 SK_TO_STRING_OVERRIDE() | 56 SK_TO_STRING_OVERRIDE() |
| 59 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkColorShader) | 57 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkColorShader) |
| 60 | 58 |
| 61 protected: | 59 protected: |
| 62 SkColorShader(SkReadBuffer&); | 60 SkColorShader(SkReadBuffer&); |
| 63 void flatten(SkWriteBuffer&) const override; | 61 void flatten(SkWriteBuffer&) const override; |
| 64 Context* onCreateContext(const ContextRec&, void* storage) const override; | 62 Context* onCreateContext(const ContextRec&, void* storage) const override; |
| 65 bool onAsLuminanceColor(SkColor* lum) const override { | 63 bool onAsLuminanceColor(SkColor* lum) const override { |
| 66 *lum = fColor; | 64 *lum = fColor; |
| 67 return true; | 65 return true; |
| 68 } | 66 } |
| 69 | 67 |
| 70 private: | 68 private: |
| 71 SkColor fColor; | 69 SkColor fColor; |
| 72 | 70 |
| 73 typedef SkShader INHERITED; | 71 typedef SkShader INHERITED; |
| 74 }; | 72 }; |
| 75 | 73 |
| 76 #endif | 74 #endif |
| OLD | NEW |