blob: b9de20449895cba638bbb9e92a3768d675daed4c [file] [log] [blame]
/**************************************************************************************************
*** 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<GrFragmentProcessor> Make(SkRect color) {
return std::unique_ptr<GrFragmentProcessor>(new GrKeyIn(color));
}
GrKeyIn(const GrKeyIn& src);
std::unique_ptr<GrFragmentProcessor> 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<GrGLSLFragmentProcessor> 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