bfc9be0f77
This will allow us to load these inputs for unit testing in `dm`. Change-Id: Id256ba7c30d3ec94b98048e47af44cf9efe580d5 Bug: skia:11009 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/357282 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
|
|
|
|
/**************************************************************************************************
|
|
*** This file was autogenerated from GrSectionConstructorParams.fp; do not modify.
|
|
**************************************************************************************************/
|
|
#include "GrSectionConstructorParams.h"
|
|
|
|
#include "src/core/SkUtils.h"
|
|
#include "src/gpu/GrTexture.h"
|
|
#include "src/gpu/glsl/GrGLSLFragmentProcessor.h"
|
|
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
|
|
#include "src/gpu/glsl/GrGLSLProgramBuilder.h"
|
|
#include "src/sksl/SkSLCPP.h"
|
|
#include "src/sksl/SkSLUtil.h"
|
|
class GrGLSLSectionConstructorParams : public GrGLSLFragmentProcessor {
|
|
public:
|
|
GrGLSLSectionConstructorParams() {}
|
|
void emitCode(EmitArgs& args) override {
|
|
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
|
|
const GrSectionConstructorParams& _outer = args.fFp.cast<GrSectionConstructorParams>();
|
|
(void) _outer;
|
|
auto w = _outer.w;
|
|
(void) w;
|
|
fragBuilder->codeAppendf(
|
|
R"SkSL(return half4(1.0);
|
|
)SkSL"
|
|
);
|
|
}
|
|
private:
|
|
void onSetData(const GrGLSLProgramDataManager& pdman, const GrFragmentProcessor& _proc) override {
|
|
}
|
|
};
|
|
GrGLSLFragmentProcessor* GrSectionConstructorParams::onCreateGLSLInstance() const {
|
|
return new GrGLSLSectionConstructorParams();
|
|
}
|
|
void GrSectionConstructorParams::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const {
|
|
}
|
|
bool GrSectionConstructorParams::onIsEqual(const GrFragmentProcessor& other) const {
|
|
const GrSectionConstructorParams& that = other.cast<GrSectionConstructorParams>();
|
|
(void) that;
|
|
if (w != that.w) return false;
|
|
return true;
|
|
}
|
|
GrSectionConstructorParams::GrSectionConstructorParams(const GrSectionConstructorParams& src)
|
|
: INHERITED(kGrSectionConstructorParams_ClassID, src.optimizationFlags())
|
|
, w(src.w) {
|
|
this->cloneAndRegisterAllChildProcessors(src);
|
|
}
|
|
std::unique_ptr<GrFragmentProcessor> GrSectionConstructorParams::clone() const {
|
|
return std::make_unique<GrSectionConstructorParams>(*this);
|
|
}
|
|
#if GR_TEST_UTILS
|
|
SkString GrSectionConstructorParams::onDumpInfo() const {
|
|
return SkStringPrintf("(w=%f)", w);
|
|
}
|
|
#endif
|