You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
4 months ago
|
|
||
|
|
||
|
/**************************************************************************************************
|
||
|
*** This file was autogenerated from GrRecursion.fp; do not modify.
|
||
|
**************************************************************************************************/
|
||
|
#ifndef GrRecursion_DEFINED
|
||
|
#define GrRecursion_DEFINED
|
||
|
|
||
|
#include "include/core/SkM44.h"
|
||
|
#include "include/core/SkTypes.h"
|
||
|
|
||
|
|
||
|
#include "src/gpu/GrFragmentProcessor.h"
|
||
|
|
||
|
class GrRecursion : public GrFragmentProcessor {
|
||
|
public:
|
||
|
static std::unique_ptr<GrFragmentProcessor> Make() {
|
||
|
return std::unique_ptr<GrFragmentProcessor>(new GrRecursion());
|
||
|
}
|
||
|
GrRecursion(const GrRecursion& src);
|
||
|
std::unique_ptr<GrFragmentProcessor> clone() const override;
|
||
|
const char* name() const override { return "Recursion"; }
|
||
|
private:
|
||
|
GrRecursion()
|
||
|
: INHERITED(kGrRecursion_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
|