skia2/tests/sksl/fp/golden/GrChildProcessorAndGlobal.cpp
John Stiles bead7e324a Remove GrFragmentProcessor::usesExplicitReturn.
All fragment processors now use explicit returns; sk_OutColor no longer
exists at all.

Change-Id: Ic5cf566a916c1d616edcc56ba84b6780776f8515
Bug: skia:10549
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/344300
Commit-Queue: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2020-12-15 18:06:12 +00:00

64 lines
2.3 KiB
C++

/**************************************************************************************************
*** This file was autogenerated from GrChildProcessorAndGlobal.fp; do not modify.
**************************************************************************************************/
#include "GrChildProcessorAndGlobal.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 GrGLSLChildProcessorAndGlobal : public GrGLSLFragmentProcessor {
public:
GrGLSLChildProcessorAndGlobal() {}
void emitCode(EmitArgs& args) override {
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
const GrChildProcessorAndGlobal& _outer = args.fFp.cast<GrChildProcessorAndGlobal>();
(void) _outer;
hasCap = sk_Caps.externalTextureSupport;
fragBuilder->codeAppendf(
R"SkSL(bool hasCap = %s;
if (hasCap) {)SkSL"
, (hasCap ? "true" : "false"));
SkString _sample0 = this->invokeChild(0, args);
fragBuilder->codeAppendf(
R"SkSL(
return %s;
} else {
return half4(1.0);
}
)SkSL"
, _sample0.c_str());
}
private:
void onSetData(const GrGLSLProgramDataManager& pdman, const GrFragmentProcessor& _proc) override {
}
bool hasCap = false;
};
GrGLSLFragmentProcessor* GrChildProcessorAndGlobal::onCreateGLSLInstance() const {
return new GrGLSLChildProcessorAndGlobal();
}
void GrChildProcessorAndGlobal::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const {
}
bool GrChildProcessorAndGlobal::onIsEqual(const GrFragmentProcessor& other) const {
const GrChildProcessorAndGlobal& that = other.cast<GrChildProcessorAndGlobal>();
(void) that;
return true;
}
GrChildProcessorAndGlobal::GrChildProcessorAndGlobal(const GrChildProcessorAndGlobal& src)
: INHERITED(kGrChildProcessorAndGlobal_ClassID, src.optimizationFlags()) {
this->cloneAndRegisterAllChildProcessors(src);
}
std::unique_ptr<GrFragmentProcessor> GrChildProcessorAndGlobal::clone() const {
return std::make_unique<GrChildProcessorAndGlobal>(*this);
}
#if GR_TEST_UTILS
SkString GrChildProcessorAndGlobal::onDumpInfo() const {
return SkString();
}
#endif