skia2/tests/sksl/fp/golden/GrSectionSetData.cpp
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

68 lines
2.6 KiB
C++

/**************************************************************************************************
*** This file was autogenerated from GrSectionSetData.fp; do not modify.
**************************************************************************************************/
#include "GrSectionSetData.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 GrGLSLSectionSetData : public GrGLSLFragmentProcessor {
public:
GrGLSLSectionSetData() {}
void emitCode(EmitArgs& args) override {
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
const GrSectionSetData& _outer = args.fFp.cast<GrSectionSetData>();
(void) _outer;
auto provided = _outer.provided;
(void) provided;
calculatedVar = args.fUniformHandler->addUniform(&_outer, kFragment_GrShaderFlag, kHalf_GrSLType, "calculated");
fragBuilder->codeAppendf(
R"SkSL(%s = half4(1.0);
)SkSL"
, args.fOutputColor);
}
private:
void onSetData(const GrGLSLProgramDataManager& varName, const GrFragmentProcessor& _proc) override {
UniformHandle& calculated = calculatedVar;
(void) calculated;
const GrSectionSetData& _outer = _proc.cast<GrSectionSetData>();
auto provided = _outer.provided;
(void) provided;
varName.set1f(calculated, provided * 2); }
UniformHandle calculatedVar;
};
GrGLSLFragmentProcessor* GrSectionSetData::onCreateGLSLInstance() const {
return new GrGLSLSectionSetData();
}
void GrSectionSetData::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const {
b->add32(sk_bit_cast<uint32_t>(provided));
}
bool GrSectionSetData::onIsEqual(const GrFragmentProcessor& other) const {
const GrSectionSetData& that = other.cast<GrSectionSetData>();
(void) that;
if (provided != that.provided) return false;
return true;
}
bool GrSectionSetData::usesExplicitReturn() const {
return false;
}
GrSectionSetData::GrSectionSetData(const GrSectionSetData& src)
: INHERITED(kGrSectionSetData_ClassID, src.optimizationFlags())
, provided(src.provided) {
this->cloneAndRegisterAllChildProcessors(src);
}
std::unique_ptr<GrFragmentProcessor> GrSectionSetData::clone() const {
return std::make_unique<GrSectionSetData>(*this);
}
#if GR_TEST_UTILS
SkString GrSectionSetData::onDumpInfo() const {
return SkStringPrintf("(provided=%f)", provided);
}
#endif