blob: 7c06231b31b10da4f5c4345cb0830a5da4547090 [file] [log] [blame]
Ethan Nicholasff4fb332019-04-09 16:28:19 -04001/*
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 Kleinc0bd9f92019-04-23 12:05:21 -050012
Greg Daniel456f9b52020-03-05 19:14:18 +000013#include "src/gpu/GrTexture.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#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 Nicholasff4fb332019-04-09 16:28:19 -040019class GrGLSLComposeLerpEffect : public GrGLSLFragmentProcessor {
20public:
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;
Ethan Nicholas16464c32020-04-06 13:53:05 -040028 weightVar = args.fUniformHandler->addUniform(&_outer, kFragment_GrShaderFlag,
29 kFloat_GrSLType, "weight");
Brian Osman978693c2020-01-24 14:52:10 -050030 SkString _sample290;
Ethan Nicholasff4fb332019-04-09 16:28:19 -040031 if (_outer.child1_index >= 0) {
Brian Osman978693c2020-01-24 14:52:10 -050032 _sample290 = this->invokeChild(_outer.child1_index, args);
Ethan Nicholas6ad52892019-05-03 13:13:42 +000033 } else {
Brian Osman978693c2020-01-24 14:52:10 -050034 _sample290 = "half4(1)";
Ethan Nicholasff4fb332019-04-09 16:28:19 -040035 }
Brian Osman978693c2020-01-24 14:52:10 -050036 SkString _sample358;
Ethan Nicholasff4fb332019-04-09 16:28:19 -040037 if (_outer.child2_index >= 0) {
Brian Osman978693c2020-01-24 14:52:10 -050038 _sample358 = this->invokeChild(_outer.child2_index, args);
Ethan Nicholas6ad52892019-05-03 13:13:42 +000039 } else {
Brian Osman978693c2020-01-24 14:52:10 -050040 _sample358 = "half4(1)";
Ethan Nicholasff4fb332019-04-09 16:28:19 -040041 }
Ethan Nicholas6ad52892019-05-03 13:13:42 +000042 fragBuilder->codeAppendf("%s = mix(%s ? %s : %s, %s ? %s : %s, half(%s));\n",
43 args.fOutputColor, _outer.child1_index >= 0 ? "true" : "false",
Ethan Nicholas13863662019-07-29 13:05:15 -040044 _sample290.c_str(), args.fInputColor,
45 _outer.child2_index >= 0 ? "true" : "false", _sample358.c_str(),
Ethan Nicholas6ad52892019-05-03 13:13:42 +000046 args.fInputColor, args.fUniformHandler->getUniformCStr(weightVar));
Ethan Nicholasff4fb332019-04-09 16:28:19 -040047 }
48
49private:
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};
57GrGLSLFragmentProcessor* GrComposeLerpEffect::onCreateGLSLInstance() const {
58 return new GrGLSLComposeLerpEffect();
59}
60void GrComposeLerpEffect::onGetGLSLProcessorKey(const GrShaderCaps& caps,
61 GrProcessorKeyBuilder* b) const {}
62bool 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}
68GrComposeLerpEffect::GrComposeLerpEffect(const GrComposeLerpEffect& src)
John Stiles88183902020-06-10 16:40:38 -040069 : INHERITED(kGrComposeLerpEffect_ClassID, src.optimizationFlags()), weight(src.weight) {
70 if (src.child1_index >= 0) {
71 auto child1_clone = src.childProcessor(src.child1_index).clone();
72 if (src.childProcessor(src.child1_index).isSampledWithExplicitCoords()) {
73 child1_clone->setSampledWithExplicitCoords();
Ethan Nicholas58430122020-04-14 09:54:02 -040074 }
John Stiles88183902020-06-10 16:40:38 -040075 child1_index = this->registerChildProcessor(std::move(child1_clone));
Ethan Nicholasff4fb332019-04-09 16:28:19 -040076 }
John Stiles88183902020-06-10 16:40:38 -040077 if (src.child2_index >= 0) {
78 auto child2_clone = src.childProcessor(src.child2_index).clone();
79 if (src.childProcessor(src.child2_index).isSampledWithExplicitCoords()) {
80 child2_clone->setSampledWithExplicitCoords();
Ethan Nicholas58430122020-04-14 09:54:02 -040081 }
John Stiles88183902020-06-10 16:40:38 -040082 child2_index = this->registerChildProcessor(std::move(child2_clone));
Ethan Nicholasff4fb332019-04-09 16:28:19 -040083 }
84}
85std::unique_ptr<GrFragmentProcessor> GrComposeLerpEffect::clone() const {
86 return std::unique_ptr<GrFragmentProcessor>(new GrComposeLerpEffect(*this));
87}