Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: src/effects/gradients/Sk4fLinearGradient.h

Issue 1688543002: Initial linear gradient 4f impl (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef Sk4fLinearGradient_DEFINED
9 #define Sk4fLinearGradient_DEFINED
10
11 #include "Sk4fGradientBase.h"
12 #include "SkLinearGradient.h"
13
14 class SkLinearGradient::
15 LinearGradient4fContext : public GradientShaderBase4fContext {
16 public:
17 LinearGradient4fContext(const SkLinearGradient&, const ContextRec&);
18
19 void shadeSpan(int x, int y, SkPMColor dst[], int count) override;
20 void shadeSpan4f(int x, int y, SkPM4f dst[], int count) override;
21
22 private:
23 using INHERITED = GradientShaderBase4fContext;
24
25 template<typename DstType, TileMode>
26 class LinearIntervalProcessor;
27
28 template <typename DstType, bool premul>
29 void shadePremulSpan(int x, int y, DstType[], int count) const;
30
31 template <typename DstType, bool premul, SkShader::TileMode tileMode>
32 void shadePremulTileSpan(int x, int y, DstType[], int count) const;
33
34 template <typename DstType, bool premul, SkShader::TileMode tileMode>
35 void shadeSpanInternal(int x, int y, DstType[], int count) const;
36 };
37
38 #endif // Sk4fLinearGradient_DEFINED
OLDNEW
« no previous file with comments | « src/effects/gradients/Sk4fGradientBase.cpp ('k') | src/effects/gradients/Sk4fLinearGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698