941fc7174f
This reverts commit 21d7778cb5
.
Reason for revert: Pinpoint absolutely hates this change
Original change's description:
> Remove inliner from IR generation stage.
>
> There is no need to inline code during IR generation, as the optimizer
> can now handle this.
>
> Change-Id: If272bfb98e945a75ec91fb4aa026e5631ac51b5b
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/315971
> Commit-Queue: John Stiles <johnstiles@google.com>
> Commit-Queue: Brian Osman <brianosman@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>
> Auto-Submit: John Stiles <johnstiles@google.com>
TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com
Change-Id: I62c235415bcdc92a088e2a7f9c3d7dbf7e1bf669
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317976
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
64 lines
2.2 KiB
C++
64 lines
2.2 KiB
C++
|
|
|
|
/**************************************************************************************************
|
|
*** This file was autogenerated from GrInlinedFunction.fp; do not modify.
|
|
**************************************************************************************************/
|
|
#include "GrInlinedFunction.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 GrGLSLInlinedFunction : public GrGLSLFragmentProcessor {
|
|
public:
|
|
GrGLSLInlinedFunction() {}
|
|
void emitCode(EmitArgs& args) override {
|
|
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
|
|
const GrInlinedFunction& _outer = args.fFp.cast<GrInlinedFunction>();
|
|
(void) _outer;
|
|
colorVar = args.fUniformHandler->addUniform(&_outer, kFragment_GrShaderFlag, kHalf4_GrSLType, "color");
|
|
fragBuilder->codeAppendf(
|
|
R"SkSL(half4 _0_flip;
|
|
{
|
|
_0_flip = %s.wzyx;
|
|
}
|
|
|
|
%s = _0_flip;
|
|
|
|
)SkSL"
|
|
, args.fUniformHandler->getUniformCStr(colorVar), args.fOutputColor);
|
|
}
|
|
private:
|
|
void onSetData(const GrGLSLProgramDataManager& pdman, const GrFragmentProcessor& _proc) override {
|
|
}
|
|
UniformHandle colorVar;
|
|
};
|
|
GrGLSLFragmentProcessor* GrInlinedFunction::onCreateGLSLInstance() const {
|
|
return new GrGLSLInlinedFunction();
|
|
}
|
|
void GrInlinedFunction::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const {
|
|
}
|
|
bool GrInlinedFunction::onIsEqual(const GrFragmentProcessor& other) const {
|
|
const GrInlinedFunction& that = other.cast<GrInlinedFunction>();
|
|
(void) that;
|
|
return true;
|
|
}
|
|
bool GrInlinedFunction::usesExplicitReturn() const {
|
|
return false;
|
|
}
|
|
GrInlinedFunction::GrInlinedFunction(const GrInlinedFunction& src)
|
|
: INHERITED(kGrInlinedFunction_ClassID, src.optimizationFlags()) {
|
|
this->cloneAndRegisterAllChildProcessors(src);
|
|
}
|
|
std::unique_ptr<GrFragmentProcessor> GrInlinedFunction::clone() const {
|
|
return std::make_unique<GrInlinedFunction>(*this);
|
|
}
|
|
#if GR_TEST_UTILS
|
|
SkString GrInlinedFunction::onDumpInfo() const {
|
|
return SkString();
|
|
}
|
|
#endif
|