1 | /* |
---|---|
2 | * Copyright 2018 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 | /************************************************************************************************** |
9 | *** This file was autogenerated from GrSweepGradientLayout.fp; do not modify. |
10 | **************************************************************************************************/ |
11 | #ifndef GrSweepGradientLayout_DEFINED |
12 | #define GrSweepGradientLayout_DEFINED |
13 | #include "include/core/SkTypes.h" |
14 | #include "include/core/SkM44.h" |
15 | |
16 | #include "src/gpu/gradients/GrGradientShader.h" |
17 | #include "src/shaders/gradients/SkSweepGradient.h" |
18 | |
19 | #include "src/gpu/GrCoordTransform.h" |
20 | #include "src/gpu/GrFragmentProcessor.h" |
21 | class GrSweepGradientLayout : public GrFragmentProcessor { |
22 | public: |
23 | static std::unique_ptr<GrFragmentProcessor> Make(const SkSweepGradient& gradient, |
24 | const GrFPArgs& args); |
25 | GrSweepGradientLayout(const GrSweepGradientLayout& src); |
26 | std::unique_ptr<GrFragmentProcessor> clone() const override; |
27 | const char* name() const override { return "SweepGradientLayout"; } |
28 | GrCoordTransform fCoordTransform0; |
29 | SkMatrix gradientMatrix; |
30 | float bias; |
31 | float scale; |
32 | |
33 | private: |
34 | GrSweepGradientLayout(SkMatrix gradientMatrix, float bias, float scale) |
35 | : INHERITED(kGrSweepGradientLayout_ClassID, |
36 | (OptimizationFlags)kPreservesOpaqueInput_OptimizationFlag) |
37 | , fCoordTransform0(gradientMatrix) |
38 | , gradientMatrix(gradientMatrix) |
39 | , bias(bias) |
40 | , scale(scale) { |
41 | this->addCoordTransform(&fCoordTransform0); |
42 | } |
43 | GrGLSLFragmentProcessor* onCreateGLSLInstance() const override; |
44 | void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override; |
45 | bool onIsEqual(const GrFragmentProcessor&) const override; |
46 | GR_DECLARE_FRAGMENT_PROCESSOR_TEST |
47 | typedef GrFragmentProcessor INHERITED; |
48 | }; |
49 | #endif |
50 |