| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright 2016 Google Inc. | 2  * Copyright 2016 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 Sk4fLinearGradient_DEFINED | 8 #ifndef Sk4fLinearGradient_DEFINED | 
| 9 #define Sk4fLinearGradient_DEFINED | 9 #define Sk4fLinearGradient_DEFINED | 
| 10 | 10 | 
| 11 #include "Sk4fGradientBase.h" | 11 #include "Sk4fGradientBase.h" | 
| 12 #include "SkLinearGradient.h" | 12 #include "SkLinearGradient.h" | 
| 13 | 13 | 
| 14 class SkLinearGradient:: | 14 class SkLinearGradient:: | 
| 15 LinearGradient4fContext final : public GradientShaderBase4fContext { | 15 LinearGradient4fContext final : public GradientShaderBase4fContext { | 
| 16 public: | 16 public: | 
| 17     LinearGradient4fContext(const SkLinearGradient&, const ContextRec&); | 17     LinearGradient4fContext(const SkLinearGradient&, const ContextRec&); | 
| 18 | 18 | 
| 19     void shadeSpan(int x, int y, SkPMColor dst[], int count) override; | 19     void shadeSpan(int x, int y, SkPMColor dst[], int count) override; | 
| 20     void shadeSpan4f(int x, int y, SkPM4f dst[], int count) override; | 20     void shadeSpan4f(int x, int y, SkPM4f dst[], int count) override; | 
| 21 | 21 | 
| 22 protected: | 22 protected: | 
| 23     void mapTs(int x, int y, SkScalar ts[], int count) const override; | 23     void mapTs(int x, int y, SkScalar ts[], int count) const override; | 
| 24 | 24 | 
| 25     BlitProc onChooseBlitProc(const SkImageInfo&, BlitState*) override; | 25     bool onChooseBlitProcs(const SkImageInfo&, BlitState*) override; | 
| 26 | 26 | 
| 27 private: | 27 private: | 
| 28     using INHERITED = GradientShaderBase4fContext; | 28     using INHERITED = GradientShaderBase4fContext; | 
| 29 | 29 | 
| 30     template<typename DstType, SkColorProfileType, TileMode> | 30     template<typename DstType, SkColorProfileType, TileMode> | 
| 31     class LinearIntervalProcessor; | 31     class LinearIntervalProcessor; | 
| 32 | 32 | 
| 33     template <typename DstType, SkColorProfileType, ApplyPremul> | 33     template <typename DstType, SkColorProfileType, ApplyPremul> | 
| 34     void shadePremulSpan(int x, int y, DstType[], int count) const; | 34     void shadePremulSpan(int x, int y, DstType[], int count) const; | 
| 35 | 35 | 
| 36     template <typename DstType, SkColorProfileType, ApplyPremul, SkShader::TileM
    ode tileMode> | 36     template <typename DstType, SkColorProfileType, ApplyPremul, SkShader::TileM
    ode tileMode> | 
| 37     void shadeSpanInternal(int x, int y, DstType[], int count) const; | 37     void shadeSpanInternal(int x, int y, DstType[], int count) const; | 
| 38 | 38 | 
| 39     const Interval* findInterval(SkScalar fx) const; | 39     const Interval* findInterval(SkScalar fx) const; | 
| 40 | 40 | 
| 41     bool isFast() const { return fDstToPosClass == kLinear_MatrixClass; } | 41     bool isFast() const { return fDstToPosClass == kLinear_MatrixClass; } | 
| 42 | 42 | 
| 43     static void D32_BlitProc(BlitState* state, int x, int y, const SkPixmap& dst
    , | 43     static void D32_BlitBW(BlitState*, int x, int y, const SkPixmap& dst, int co
    unt); | 
| 44                              int count, const SkAlpha aa[]); | 44     static void D64_BlitBW(BlitState*, int x, int y, const SkPixmap& dst, int co
    unt); | 
| 45     static void D64_BlitProc(BlitState*, int x, int y, const SkPixmap& dst, |  | 
| 46                              int count, const SkAlpha aa[]); |  | 
| 47 | 45 | 
| 48     mutable const Interval*      fCachedInterval; | 46     mutable const Interval*      fCachedInterval; | 
| 49 }; | 47 }; | 
| 50 | 48 | 
| 51 #endif // Sk4fLinearGradient_DEFINED | 49 #endif // Sk4fLinearGradient_DEFINED | 
| OLD | NEW | 
|---|