wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "src/gpu/GrFragmentProcessor.h" |
| 9 | #include "src/gpu/GrProcessor.h" |
| 10 | #include "src/gpu/glsl/GrGLSLFragmentProcessor.h" |
| 11 | #include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h" |
| 12 | #include "src/gpu/glsl/GrGLSLUniformHandler.h" |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 13 | |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 14 | void GrGLSLFragmentProcessor::setData(const GrGLSLProgramDataManager& pdman, |
| 15 | const GrFragmentProcessor& processor) { |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 16 | this->onSetData(pdman, processor); |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 17 | } |
wangyix | 2a37843 | 2015-08-18 12:00:12 -0700 | [diff] [blame] | 18 | |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 19 | void GrGLSLFragmentProcessor::invokeChild(int childIndex, const char* inputColor, EmitArgs& args) { |
| 20 | while (childIndex >= (int) fFunctionNames.size()) { |
| 21 | fFunctionNames.emplace_back(); |
| 22 | } |
| 23 | this->internalInvokeChild(childIndex, inputColor, args.fOutputColor, args); |
bsalomon | 38ddbad | 2015-09-24 06:00:00 -0700 | [diff] [blame] | 24 | } |
| 25 | |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 26 | void GrGLSLFragmentProcessor::invokeChild(int childIndex, const char* inputColor, |
| 27 | SkString* outputColor, EmitArgs& args) { |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 28 | SkASSERT(outputColor); |
cdalton | 8528541 | 2016-02-18 12:37:07 -0800 | [diff] [blame] | 29 | GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 30 | outputColor->append(fragBuilder->getMangleString()); |
| 31 | fragBuilder->codeAppendf("half4 %s;", outputColor->c_str()); |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 32 | while (childIndex >= (int) fFunctionNames.size()) { |
| 33 | fFunctionNames.emplace_back(); |
| 34 | } |
| 35 | if (fFunctionNames[childIndex].size() == 0) { |
| 36 | this->internalInvokeChild(childIndex, inputColor, outputColor->c_str(), args); |
| 37 | } else { |
| 38 | fragBuilder->codeAppendf("%s = %s(%s);", outputColor->c_str(), |
| 39 | fFunctionNames[childIndex].c_str(), |
| 40 | inputColor ? inputColor : "half4(1)"); |
| 41 | } |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 44 | void GrGLSLFragmentProcessor::internalInvokeChild(int childIndex, const char* inputColor, |
| 45 | const char* outputColor, EmitArgs& args) { |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 46 | GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; |
| 47 | |
| 48 | fragBuilder->onBeforeChildProcEmitCode(); // call first so mangleString is updated |
| 49 | |
| 50 | // Prepare a mangled input color variable if the default is not used, |
| 51 | // inputName remains the empty string if no variable is needed. |
| 52 | SkString inputName; |
| 53 | if (inputColor&& strcmp("half4(1.0)", inputColor) != 0 && strcmp("half4(1)", inputColor) != 0) { |
| 54 | // The input name is based off of the current mangle string, and |
| 55 | // since this is called after onBeforeChildProcEmitCode(), it will be |
| 56 | // unique to the child processor (exactly what we want for its input). |
| 57 | inputName.appendf("_childInput%s", fragBuilder->getMangleString().c_str()); |
| 58 | fragBuilder->codeAppendf("half4 %s = %s;", inputName.c_str(), inputColor); |
| 59 | } |
bsalomon | 38ddbad | 2015-09-24 06:00:00 -0700 | [diff] [blame] | 60 | |
wangyix | 2a37843 | 2015-08-18 12:00:12 -0700 | [diff] [blame] | 61 | const GrFragmentProcessor& childProc = args.fFp.childProcessor(childIndex); |
| 62 | |
bsalomon | b58a2b4 | 2016-09-26 06:55:02 -0700 | [diff] [blame] | 63 | TransformedCoordVars coordVars = args.fTransformedCoords.childInputs(childIndex); |
| 64 | TextureSamplers textureSamplers = args.fTexSamplers.childInputs(childIndex); |
Michael Ludwig | 231de03 | 2018-08-30 14:33:01 -0400 | [diff] [blame] | 65 | |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 66 | EmitArgs childArgs(fragBuilder, |
| 67 | args.fUniformHandler, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 68 | args.fShaderCaps, |
wangyix | 2a37843 | 2015-08-18 12:00:12 -0700 | [diff] [blame] | 69 | childProc, |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 70 | outputColor, |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 71 | "_input", |
bsalomon | a624bf3 | 2016-09-20 09:12:47 -0700 | [diff] [blame] | 72 | coordVars, |
Brian Salomon | 662ea4b | 2018-07-12 14:53:49 -0400 | [diff] [blame] | 73 | textureSamplers); |
Ethan Nicholas | c6dce5a | 2019-07-24 16:51:36 -0400 | [diff] [blame^] | 74 | fFunctionNames[childIndex] = fragBuilder->writeProcessorFunction( |
| 75 | this->childProcessor(childIndex), |
| 76 | childArgs); |
| 77 | fragBuilder->codeAppendf("%s = %s(%s);\n", outputColor, |
| 78 | fFunctionNames[childIndex].c_str(), |
| 79 | inputName.size() > 0 ? inputName.c_str() |
| 80 | : "half4(1)"); |
Ethan Nicholas | 6ad5289 | 2019-05-03 13:13:42 +0000 | [diff] [blame] | 81 | |
| 82 | fragBuilder->onAfterChildProcEmitCode(); |
wangyix | 2a37843 | 2015-08-18 12:00:12 -0700 | [diff] [blame] | 83 | } |
bsalomon | a624bf3 | 2016-09-20 09:12:47 -0700 | [diff] [blame] | 84 | |
| 85 | ////////////////////////////////////////////////////////////////////////////// |
| 86 | |
bsalomon | b58a2b4 | 2016-09-26 06:55:02 -0700 | [diff] [blame] | 87 | GrGLSLFragmentProcessor* GrGLSLFragmentProcessor::Iter::next() { |
| 88 | if (fFPStack.empty()) { |
| 89 | return nullptr; |
bsalomon | a624bf3 | 2016-09-20 09:12:47 -0700 | [diff] [blame] | 90 | } |
bsalomon | b58a2b4 | 2016-09-26 06:55:02 -0700 | [diff] [blame] | 91 | GrGLSLFragmentProcessor* back = fFPStack.back(); |
| 92 | fFPStack.pop_back(); |
| 93 | for (int i = back->numChildProcessors() - 1; i >= 0; --i) { |
| 94 | fFPStack.push_back(back->childProcessor(i)); |
| 95 | } |
| 96 | return back; |
bsalomon | a624bf3 | 2016-09-20 09:12:47 -0700 | [diff] [blame] | 97 | } |