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.
64 lines
2.3 KiB
64 lines
2.3 KiB
|
|
|
|
/**************************************************************************************************
|
|
*** 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;
|
|
};
|
|
std::unique_ptr<GrGLSLFragmentProcessor> GrChildProcessorAndGlobal::onMakeProgramImpl() const {
|
|
return std::make_unique<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
|