1 
2 
3 /**************************************************************************************************
4  *** This file was autogenerated from GrSectionConstructor.fp; do not modify.
5  **************************************************************************************************/
6 #ifndef GrSectionConstructor_DEFINED
7 #define GrSectionConstructor_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 GrSectionConstructor : public GrFragmentProcessor {
16 public:
Make()17     static std::unique_ptr<GrFragmentProcessor> Make() {
18         return std::unique_ptr<GrFragmentProcessor>(new GrSectionConstructor());
19     }
20     GrSectionConstructor(const GrSectionConstructor& src);
21     std::unique_ptr<GrFragmentProcessor> clone() const override;
name()22     const char* name() const override { return "SectionConstructor"; }
23 private:
24 constructor section    std::unique_ptr<GrGLSLFragmentProcessor> onMakeProgramImpl() const override;
25     void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
26     bool onIsEqual(const GrFragmentProcessor&) const override;
27 #if GR_TEST_UTILS
28     SkString onDumpInfo() const override;
29 #endif
30     GR_DECLARE_FRAGMENT_PROCESSOR_TEST
31     using INHERITED = GrFragmentProcessor;
32 };
33 #endif
34