blob: 1af5e938c32fb02e434d921788e8e88dce75f4da [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
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 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;
28 weightVar =
29 args.fUniformHandler->addUniform(kFragment_GrShaderFlag, kFloat_GrSLType, "weight");
Ethan Nicholas13863662019-07-29 13:05:15 -040030 SkString _sample290("_sample290");
Ethan Nicholasff4fb332019-04-09 16:28:19 -040031 if (_outer.child1_index >= 0) {
Ethan Nicholas13863662019-07-29 13:05:15 -040032 this->invokeChild(_outer.child1_index, &_sample290, args);
Ethan Nicholas6ad52892019-05-03 13:13:42 +000033 } else {
Ethan Nicholas13863662019-07-29 13:05:15 -040034 fragBuilder->codeAppendf("half4 %s;", _sample290.c_str());
Ethan Nicholasff4fb332019-04-09 16:28:19 -040035 }
Ethan Nicholas13863662019-07-29 13:05:15 -040036 SkString _sample358("_sample358");
Ethan Nicholasff4fb332019-04-09 16:28:19 -040037 if (_outer.child2_index >= 0) {
Ethan Nicholas13863662019-07-29 13:05:15 -040038 this->invokeChild(_outer.child2_index, &_sample358, args);
Ethan Nicholas6ad52892019-05-03 13:13:42 +000039 } else {
Ethan Nicholas13863662019-07-29 13:05:15 -040040 fragBuilder->codeAppendf("half4 %s;", _sample358.c_str());
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)
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}
80std::unique_ptr<GrFragmentProcessor> GrComposeLerpEffect::clone() const {
81 return std::unique_ptr<GrFragmentProcessor>(new GrComposeLerpEffect(*this));
82}