Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019 Google LLC. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | /************************************************************************************************** |
| 9 | *** This file was autogenerated from GrComposeLerpEffect.fp; do not modify. |
| 10 | **************************************************************************************************/ |
| 11 | #include "GrComposeLerpEffect.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | |
| 13 | #include "include/gpu/GrTexture.h" |
| 14 | #include "src/gpu/glsl/GrGLSLFragmentProcessor.h" |
| 15 | #include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h" |
| 16 | #include "src/gpu/glsl/GrGLSLProgramBuilder.h" |
| 17 | #include "src/sksl/SkSLCPP.h" |
| 18 | #include "src/sksl/SkSLUtil.h" |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 19 | class GrGLSLComposeLerpEffect : public GrGLSLFragmentProcessor { |
| 20 | public: |
| 21 | GrGLSLComposeLerpEffect() {} |
| 22 | void emitCode(EmitArgs& args) override { |
| 23 | GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; |
| 24 | const GrComposeLerpEffect& _outer = args.fFp.cast<GrComposeLerpEffect>(); |
| 25 | (void)_outer; |
| 26 | auto weight = _outer.weight; |
| 27 | (void)weight; |
| 28 | weightVar = |
| 29 | args.fUniformHandler->addUniform(kFragment_GrShaderFlag, kFloat_GrSLType, "weight"); |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 30 | SkString _child0("_child0"); |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 31 | if (_outer.child1_index >= 0) { |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame] | 32 | this->invokeChild(_outer.child1_index, &_child0, args); |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 33 | } else { |
| 34 | fragBuilder->codeAppendf("half4 %s;", _child0.c_str()); |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 35 | } |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 36 | SkString _child1("_child1"); |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 37 | if (_outer.child2_index >= 0) { |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame] | 38 | this->invokeChild(_outer.child2_index, &_child1, args); |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 39 | } else { |
| 40 | fragBuilder->codeAppendf("half4 %s;", _child1.c_str()); |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 41 | } |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 42 | fragBuilder->codeAppendf("%s = mix(%s ? %s : %s, %s ? %s : %s, half(%s));\n", |
| 43 | args.fOutputColor, _outer.child1_index >= 0 ? "true" : "false", |
| 44 | _child0.c_str(), args.fInputColor, |
| 45 | _outer.child2_index >= 0 ? "true" : "false", _child1.c_str(), |
| 46 | args.fInputColor, args.fUniformHandler->getUniformCStr(weightVar)); |
Ethan Nicholas | ff4fb33 | 2019-04-09 16:28:19 -0400 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | private: |
| 50 | void onSetData(const GrGLSLProgramDataManager& pdman, |
| 51 | const GrFragmentProcessor& _proc) override { |
| 52 | const GrComposeLerpEffect& _outer = _proc.cast<GrComposeLerpEffect>(); |
| 53 | { pdman.set1f(weightVar, (_outer.weight)); } |
| 54 | } |
| 55 | UniformHandle weightVar; |
| 56 | }; |
| 57 | GrGLSLFragmentProcessor* GrComposeLerpEffect::onCreateGLSLInstance() const { |
| 58 | return new GrGLSLComposeLerpEffect(); |
| 59 | } |
| 60 | void GrComposeLerpEffect::onGetGLSLProcessorKey(const GrShaderCaps& caps, |
| 61 | GrProcessorKeyBuilder* b) const {} |
| 62 | bool GrComposeLerpEffect::onIsEqual(const GrFragmentProcessor& other) const { |
| 63 | const GrComposeLerpEffect& that = other.cast<GrComposeLerpEffect>(); |
| 64 | (void)that; |
| 65 | if (weight != that.weight) return false; |
| 66 | return true; |
| 67 | } |
| 68 | GrComposeLerpEffect::GrComposeLerpEffect(const GrComposeLerpEffect& src) |
| 69 | : INHERITED(kGrComposeLerpEffect_ClassID, src.optimizationFlags()) |
| 70 | , child1_index(src.child1_index) |
| 71 | , child2_index(src.child2_index) |
| 72 | , weight(src.weight) { |
| 73 | if (child1_index >= 0) { |
| 74 | this->registerChildProcessor(src.childProcessor(child1_index).clone()); |
| 75 | } |
| 76 | if (child2_index >= 0) { |
| 77 | this->registerChildProcessor(src.childProcessor(child2_index).clone()); |
| 78 | } |
| 79 | } |
| 80 | std::unique_ptr<GrFragmentProcessor> GrComposeLerpEffect::clone() const { |
| 81 | return std::unique_ptr<GrFragmentProcessor>(new GrComposeLerpEffect(*this)); |
| 82 | } |