1 2 3 /************************************************************************************************** 4 *** This file was autogenerated from GrDSLFPTest_DoStatement.fp; do not modify. 5 **************************************************************************************************/ 6 #ifndef GrDSLFPTest_DoStatement_DEFINED 7 #define GrDSLFPTest_DoStatement_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 GrDSLFPTest_DoStatement : public GrFragmentProcessor { 16 public: Make(bool shouldLoop)17 static std::unique_ptr<GrFragmentProcessor> Make(bool shouldLoop) { 18 return std::unique_ptr<GrFragmentProcessor>(new GrDSLFPTest_DoStatement(shouldLoop)); 19 } 20 GrDSLFPTest_DoStatement(const GrDSLFPTest_DoStatement& src); 21 std::unique_ptr<GrFragmentProcessor> clone() const override; name()22 const char* name() const override { return "DSLFPTest_DoStatement"; } 23 bool shouldLoop; 24 private: GrDSLFPTest_DoStatement(bool shouldLoop)25 GrDSLFPTest_DoStatement(bool shouldLoop) 26 : INHERITED(kGrDSLFPTest_DoStatement_ClassID, kNone_OptimizationFlags) 27 , shouldLoop(shouldLoop) { 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