/************************************************************************************************** *** This file was autogenerated from GrKeyIn.fp; do not modify. **************************************************************************************************/ #ifndef GrKeyIn_DEFINED #define GrKeyIn_DEFINED #include "include/core/SkM44.h" #include "include/core/SkTypes.h" #include "src/gpu/GrFragmentProcessor.h" class GrKeyIn : public GrFragmentProcessor { public: static std::unique_ptr Make(SkRect color) { return std::unique_ptr(new GrKeyIn(color)); } GrKeyIn(const GrKeyIn& src); std::unique_ptr clone() const override; const char* name() const override { return "KeyIn"; } SkRect color; private: GrKeyIn(SkRect color) : INHERITED(kGrKeyIn_ClassID, kNone_OptimizationFlags) , color(color) { } std::unique_ptr onMakeProgramImpl() const override; void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override; bool onIsEqual(const GrFragmentProcessor&) const override; #if GR_TEST_UTILS SkString onDumpInfo() const override; #endif GR_DECLARE_FRAGMENT_PROCESSOR_TEST using INHERITED = GrFragmentProcessor; }; #endif