1 
2 
3 /**************************************************************************************************
4  *** This file was autogenerated from GrSectionConstructorParams.fp; do not modify.
5  **************************************************************************************************/
6 #ifndef GrSectionConstructorParams_DEFINED
7 #define GrSectionConstructorParams_DEFINED
8 
9 #include "include/core/SkM44.h"
10 #include "include/core/SkTypes.h"
11 
12 
13 #include "src/gpu/GrFragmentProcessor.h"
14 
15 class GrSectionConstructorParams : public GrFragmentProcessor {
16 public:
Make(float w,int x,float y,std::vector<float> z)17     static std::unique_ptr<GrFragmentProcessor> Make(float w,  int x, float y, std::vector<float> z ) {
18         return std::unique_ptr<GrFragmentProcessor>(new GrSectionConstructorParams(w, x, y, z));
19     }
20     GrSectionConstructorParams(const GrSectionConstructorParams& src);
21     std::unique_ptr<GrFragmentProcessor> clone() const override;
name()22     const char* name() const override { return "SectionConstructorParams"; }
23     float w;
24 private:
GrSectionConstructorParams(float w,int x,float y,std::vector<float> z)25     GrSectionConstructorParams(float w,  int x, float y, std::vector<float> z )
26     : INHERITED(kGrSectionConstructorParams_ClassID, kNone_OptimizationFlags)
27     , w(w) {
28     }
29     std::unique_ptr<GrGLSLFragmentProcessor> onMakeProgramImpl() const override;
30     void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
31     bool onIsEqual(const GrFragmentProcessor&) const override;
32 #if GR_TEST_UTILS
33     SkString onDumpInfo() const override;
34 #endif
35     GR_DECLARE_FRAGMENT_PROCESSOR_TEST
36     using INHERITED = GrFragmentProcessor;
37 };
38 #endif
39