skia2/tests/sksl/fp/golden/GrKeyIn.h
John Stiles 6dc5265ae6 Migrate several SkSLFP tests to golden outputs.
Change-Id: I83a38f2c953a560fea3483e95e31df532b90773e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317456
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2020-09-17 16:46:18 +00:00

40 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"; }
bool usesExplicitReturn() const override;
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