skia2/tests/sksl/fp/golden/GrLayoutWhen.cpp
John Stiles 647a9bd7c2 Convert the remaining FP tests to golden outputs.
(Removed one test, SkSLFPSwitchWithMultipleReturnsInside, because it was
redundant with existing tests.)

Change-Id: I1bfc069babdb5eb0cc515f195c3a2e307bb5871a
Bug: skia:10694
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/319029
Commit-Queue: John Stiles <johnstiles@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2020-09-23 16:21:58 +00:00

56 lines
2.0 KiB
C++

/**************************************************************************************************
*** This file was autogenerated from GrLayoutWhen.fp; do not modify.
**************************************************************************************************/
#include "GrLayoutWhen.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 GrGLSLLayoutWhen : public GrGLSLFragmentProcessor {
public:
GrGLSLLayoutWhen() {}
void emitCode(EmitArgs& args) override {
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
const GrLayoutWhen& _outer = args.fFp.cast<GrLayoutWhen>();
(void) _outer;
if (someExpression(someOtherExpression())) {
sometimesVar = args.fUniformHandler->addUniform(&_outer, kFragment_GrShaderFlag, kHalf_GrSLType, "sometimes");
}
}
private:
void onSetData(const GrGLSLProgramDataManager& pdman, const GrFragmentProcessor& _proc) override {
}
UniformHandle sometimesVar;
};
GrGLSLFragmentProcessor* GrLayoutWhen::onCreateGLSLInstance() const {
return new GrGLSLLayoutWhen();
}
void GrLayoutWhen::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const {
}
bool GrLayoutWhen::onIsEqual(const GrFragmentProcessor& other) const {
const GrLayoutWhen& that = other.cast<GrLayoutWhen>();
(void) that;
return true;
}
bool GrLayoutWhen::usesExplicitReturn() const {
return false;
}
GrLayoutWhen::GrLayoutWhen(const GrLayoutWhen& src)
: INHERITED(kGrLayoutWhen_ClassID, src.optimizationFlags()) {
this->cloneAndRegisterAllChildProcessors(src);
}
std::unique_ptr<GrFragmentProcessor> GrLayoutWhen::clone() const {
return std::make_unique<GrLayoutWhen>(*this);
}
#if GR_TEST_UTILS
SkString GrLayoutWhen::onDumpInfo() const {
return SkString();
}
#endif