39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
|
|
||
|
|
||
|
/**************************************************************************************************
|
||
|
*** 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) {
|
||
|
}
|
||
|
GrGLSLFragmentProcessor* onCreateGLSLInstance() 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
|