skia2/tests/sksl/fp/GrSectionConstructorParams.h
Brian Salomon 18ab2030e3 Make GrGLSLFragmentProcessors be created as std::unique_ptr.
Rename factory function from createGLSLInstance() to makeProgramImpl()

Bug: b/180759848
Bug: skia:11358
Change-Id: I095bdf1f26db5a8192fa8ab59000db4a1d561d96
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/373738
Reviewed-by: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
2021-02-23 19:31:01 +00:00

39 lines
1.5 KiB
C++

/**************************************************************************************************
*** This file was autogenerated from GrSectionConstructorParams.fp; do not modify.
**************************************************************************************************/
#ifndef GrSectionConstructorParams_DEFINED
#define GrSectionConstructorParams_DEFINED
#include "include/core/SkM44.h"
#include "include/core/SkTypes.h"
#include "src/gpu/GrFragmentProcessor.h"
class GrSectionConstructorParams : public GrFragmentProcessor {
public:
static std::unique_ptr<GrFragmentProcessor> Make(float w, int x, float y, std::vector<float> z ) {
return std::unique_ptr<GrFragmentProcessor>(new GrSectionConstructorParams(w, x, y, z));
}
GrSectionConstructorParams(const GrSectionConstructorParams& src);
std::unique_ptr<GrFragmentProcessor> clone() const override;
const char* name() const override { return "SectionConstructorParams"; }
float w;
private:
GrSectionConstructorParams(float w, int x, float y, std::vector<float> z )
: INHERITED(kGrSectionConstructorParams_ClassID, kNone_OptimizationFlags)
, w(w) {
}
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