blob: d3ad32c4663251ee93a536eccd8e53790823a348 [file] [log] [blame]
/* HELLO WORLD */
/**************************************************************************************************
*** This file was autogenerated from GrHelloWorld.fp; do not modify.
**************************************************************************************************/
#ifndef GrHelloWorld_DEFINED
#define GrHelloWorld_DEFINED
#include "include/core/SkM44.h"
#include "include/core/SkTypes.h"
#include "src/gpu/GrFragmentProcessor.h"
class GrHelloWorld : public GrFragmentProcessor {
public:
static std::unique_ptr<GrFragmentProcessor> Make() {
return std::unique_ptr<GrFragmentProcessor>(new GrHelloWorld());
}
GrHelloWorld(const GrHelloWorld& src);
std::unique_ptr<GrFragmentProcessor> clone() const override;
const char* name() const override { return "HelloWorld"; }
private:
GrHelloWorld()
: INHERITED(kGrHelloWorld_ClassID, kNone_OptimizationFlags) {
}
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