blob: bd0108407f076d5fce9ee45e2dcba8c80939107a [file] [log] [blame]
joshualitt30ba4362014-08-21 20:18:45 -07001/*
2 * Copyright 2014 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
egdaniel2d721d32015-11-11 13:06:05 -08008#include "GrGLSLFragmentShaderBuilder.h"
egdaniel574a4c12015-11-02 06:22:44 -08009#include "GrRenderTarget.h"
ethannicholas22793252016-01-30 09:59:10 -080010#include "gl/GrGLGpu.h"
egdanielcb7ba1e2015-10-26 08:38:25 -070011#include "glsl/GrGLSL.h"
jvanverthcba99b82015-06-24 06:59:57 -070012#include "glsl/GrGLSLCaps.h"
egdaniel8dcdedc2015-11-11 06:27:20 -080013#include "glsl/GrGLSLProgramBuilder.h"
egdaniel7ea439b2015-12-03 09:20:44 -080014#include "glsl/GrGLSLUniformHandler.h"
egdaniel0eafe792015-11-20 14:01:22 -080015#include "glsl/GrGLSLVarying.h"
joshualitt47bb3822014-10-07 16:43:25 -070016
egdaniel2d721d32015-11-11 13:06:05 -080017const char* GrGLSLFragmentShaderBuilder::kDstTextureColorName = "_dstColor";
joshualitt30ba4362014-08-21 20:18:45 -070018
cdalton8917d622015-05-06 13:40:21 -070019static const char* specific_layout_qualifier_name(GrBlendEquation equation) {
20 SkASSERT(GrBlendEquationIsAdvanced(equation));
21
22 static const char* kLayoutQualifierNames[] = {
23 "blend_support_screen",
24 "blend_support_overlay",
25 "blend_support_darken",
26 "blend_support_lighten",
27 "blend_support_colordodge",
28 "blend_support_colorburn",
29 "blend_support_hardlight",
30 "blend_support_softlight",
31 "blend_support_difference",
32 "blend_support_exclusion",
33 "blend_support_multiply",
34 "blend_support_hsl_hue",
35 "blend_support_hsl_saturation",
36 "blend_support_hsl_color",
37 "blend_support_hsl_luminosity"
38 };
39 return kLayoutQualifierNames[equation - kFirstAdvancedGrBlendEquation];
40
41 GR_STATIC_ASSERT(0 == kScreen_GrBlendEquation - kFirstAdvancedGrBlendEquation);
42 GR_STATIC_ASSERT(1 == kOverlay_GrBlendEquation - kFirstAdvancedGrBlendEquation);
43 GR_STATIC_ASSERT(2 == kDarken_GrBlendEquation - kFirstAdvancedGrBlendEquation);
44 GR_STATIC_ASSERT(3 == kLighten_GrBlendEquation - kFirstAdvancedGrBlendEquation);
45 GR_STATIC_ASSERT(4 == kColorDodge_GrBlendEquation - kFirstAdvancedGrBlendEquation);
46 GR_STATIC_ASSERT(5 == kColorBurn_GrBlendEquation - kFirstAdvancedGrBlendEquation);
47 GR_STATIC_ASSERT(6 == kHardLight_GrBlendEquation - kFirstAdvancedGrBlendEquation);
48 GR_STATIC_ASSERT(7 == kSoftLight_GrBlendEquation - kFirstAdvancedGrBlendEquation);
49 GR_STATIC_ASSERT(8 == kDifference_GrBlendEquation - kFirstAdvancedGrBlendEquation);
50 GR_STATIC_ASSERT(9 == kExclusion_GrBlendEquation - kFirstAdvancedGrBlendEquation);
51 GR_STATIC_ASSERT(10 == kMultiply_GrBlendEquation - kFirstAdvancedGrBlendEquation);
52 GR_STATIC_ASSERT(11 == kHSLHue_GrBlendEquation - kFirstAdvancedGrBlendEquation);
53 GR_STATIC_ASSERT(12 == kHSLSaturation_GrBlendEquation - kFirstAdvancedGrBlendEquation);
54 GR_STATIC_ASSERT(13 == kHSLColor_GrBlendEquation - kFirstAdvancedGrBlendEquation);
55 GR_STATIC_ASSERT(14 == kHSLLuminosity_GrBlendEquation - kFirstAdvancedGrBlendEquation);
56 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kLayoutQualifierNames) ==
bsalomonf7cc8772015-05-11 11:21:14 -070057 kGrBlendEquationCnt - kFirstAdvancedGrBlendEquation);
cdalton8917d622015-05-06 13:40:21 -070058}
59
egdaniel2d721d32015-11-11 13:06:05 -080060GrGLSLFragmentShaderBuilder::FragPosKey
61GrGLSLFragmentShaderBuilder::KeyForFragmentPosition(const GrRenderTarget* dst) {
joshualitt30ba4362014-08-21 20:18:45 -070062 if (kTopLeft_GrSurfaceOrigin == dst->origin()) {
63 return kTopLeftFragPosRead_FragPosKey;
64 } else {
65 return kBottomLeftFragPosRead_FragPosKey;
66 }
67}
68
egdaniel2d721d32015-11-11 13:06:05 -080069GrGLSLFragmentShaderBuilder::GrGLSLFragmentShaderBuilder(GrGLSLProgramBuilder* program,
70 uint8_t fragPosKey)
cdalton85285412016-02-18 12:37:07 -080071 : GrGLSLFragmentBuilder(program)
joshualitt30ba4362014-08-21 20:18:45 -070072 , fSetupFragPosition(false)
joshualitt79f8fae2014-10-28 17:59:26 -070073 , fTopLeftFragPosRead(kTopLeftFragPosRead_FragPosKey == fragPosKey)
cdalton85285412016-02-18 12:37:07 -080074 , fHasCustomColorOutput(false)
joshualittb4384b92014-10-21 12:53:15 -070075 , fCustomColorOutputIndex(-1)
cdalton85285412016-02-18 12:37:07 -080076 , fHasSecondaryOutput(false)
cdalton87332102016-02-26 12:22:02 -080077 , fHasInitializedSampleMask(false) {
cdalton85285412016-02-18 12:37:07 -080078 fSubstageIndices.push_back(0);
cdalton87332102016-02-26 12:22:02 -080079#ifdef SK_DEBUG
80 fUsedProcessorFeatures = GrProcessor::kNone_RequiredFeatures;
81 fHasReadDstColor = false;
82#endif
83}
84
85bool GrGLSLFragmentShaderBuilder::hasFragmentPosition() const {
86 return 0 != fProgramBuilder->header().fFragPosKey;
joshualitt30ba4362014-08-21 20:18:45 -070087}
88
egdaniel2d721d32015-11-11 13:06:05 -080089bool GrGLSLFragmentShaderBuilder::enableFeature(GLSLFeature feature) {
joshualitt30ba4362014-08-21 20:18:45 -070090 switch (feature) {
benjaminwagner1751dc72016-02-12 15:20:55 -080091 case kStandardDerivatives_GLSLFeature: {
92 if (!fProgramBuilder->glslCaps()->shaderDerivativeSupport()) {
joshualitt30ba4362014-08-21 20:18:45 -070093 return false;
94 }
benjaminwagner1751dc72016-02-12 15:20:55 -080095 const char* extension = fProgramBuilder->glslCaps()->shaderDerivativeExtensionString();
96 if (extension) {
egdaniel574a4c12015-11-02 06:22:44 -080097 this->addFeature(1 << kStandardDerivatives_GLSLFeature, extension);
joshualitt30ba4362014-08-21 20:18:45 -070098 }
99 return true;
benjaminwagner1751dc72016-02-12 15:20:55 -0800100 }
101 case kPixelLocalStorage_GLSLFeature: {
ethannicholas22793252016-01-30 09:59:10 -0800102 if (fProgramBuilder->glslCaps()->pixelLocalStorageSize() <= 0) {
103 return false;
104 }
105 this->addFeature(1 << kPixelLocalStorage_GLSLFeature,
106 "GL_EXT_shader_pixel_local_storage");
107 return true;
benjaminwagner1751dc72016-02-12 15:20:55 -0800108 }
joshualitt30ba4362014-08-21 20:18:45 -0700109 default:
110 SkFAIL("Unexpected GLSLFeature requested.");
111 return false;
112 }
113}
114
egdaniel2d721d32015-11-11 13:06:05 -0800115SkString GrGLSLFragmentShaderBuilder::ensureFSCoords2D(const GrGLSLTransformedCoordsArray& coords,
116 int index) {
joshualitt23e280d2014-09-18 12:26:38 -0700117 if (kVec3f_GrSLType != coords[index].getType()) {
118 SkASSERT(kVec2f_GrSLType == coords[index].getType());
joshualitt30ba4362014-08-21 20:18:45 -0700119 return coords[index].getName();
120 }
121
122 SkString coords2D("coords2D");
123 if (0 != index) {
124 coords2D.appendf("_%i", index);
125 }
126 this->codeAppendf("\tvec2 %s = %s.xy / %s.z;",
127 coords2D.c_str(), coords[index].c_str(), coords[index].c_str());
128 return coords2D;
129}
130
egdaniel2d721d32015-11-11 13:06:05 -0800131const char* GrGLSLFragmentShaderBuilder::fragmentPosition() {
cdalton87332102016-02-26 12:22:02 -0800132 SkASSERT(this->hasFragmentPosition());
133 SkDEBUGCODE(fUsedProcessorFeatures |= GrProcessor::kFragmentPosition_RequiredFeature;)
joshualitt30ba4362014-08-21 20:18:45 -0700134
egdaniel8dcdedc2015-11-11 06:27:20 -0800135 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
joshualitt30ba4362014-08-21 20:18:45 -0700136 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
137 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
138 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
139 if (fTopLeftFragPosRead) {
140 fSetupFragPosition = true;
141 return "gl_FragCoord";
egdaniel8dcdedc2015-11-11 06:27:20 -0800142 } else if (const char* extension = glslCaps->fragCoordConventionsExtensionString()) {
joshualitt30ba4362014-08-21 20:18:45 -0700143 if (!fSetupFragPosition) {
egdaniel8dcdedc2015-11-11 06:27:20 -0800144 if (glslCaps->generation() < k150_GrGLSLGeneration) {
joshualitt30ba4362014-08-21 20:18:45 -0700145 this->addFeature(1 << kFragCoordConventions_GLSLPrivateFeature,
egdaniel8dcdedc2015-11-11 06:27:20 -0800146 extension);
joshualitt30ba4362014-08-21 20:18:45 -0700147 }
148 fInputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700149 GrGLSLShaderVar::kIn_TypeModifier,
joshualitt30ba4362014-08-21 20:18:45 -0700150 "gl_FragCoord",
bsalomonc0bd6482014-12-09 10:04:14 -0800151 kDefault_GrSLPrecision,
egdanielae474182016-01-21 11:19:52 -0800152 "origin_upper_left");
joshualitt30ba4362014-08-21 20:18:45 -0700153 fSetupFragPosition = true;
154 }
155 return "gl_FragCoord";
156 } else {
robertphillips18c58c72015-07-21 12:06:52 -0700157 static const char* kTempName = "tmpXYFragCoord";
joshualitt30ba4362014-08-21 20:18:45 -0700158 static const char* kCoordName = "fragCoordYDown";
159 if (!fSetupFragPosition) {
joshualitt30ba4362014-08-21 20:18:45 -0700160 const char* rtHeightName;
161
egdaniel7ea439b2015-12-03 09:20:44 -0800162 fProgramBuilder->addRTHeightUniform("RTHeight", &rtHeightName);
joshualitt30ba4362014-08-21 20:18:45 -0700163
robertphillips18c58c72015-07-21 12:06:52 -0700164 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
165 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
166 // depending on the surrounding code, accessing .xy with a uniform involved can
167 // do the same thing. Copying gl_FragCoord.xy into a temp vec2 beforehand
168 // (and only accessing .xy) seems to "fix" things.
ethannicholas1cbb5ea2015-12-14 11:37:55 -0800169 const char* precision = glslCaps->usesPrecisionModifiers() ? "highp " : "";
170 this->codePrependf("\t%svec4 %s = vec4(%s.x, %s - %s.y, 1.0, 1.0);\n",
171 precision, kCoordName, kTempName, rtHeightName, kTempName);
172 this->codePrependf("%svec2 %s = gl_FragCoord.xy;", precision, kTempName);
joshualitt30ba4362014-08-21 20:18:45 -0700173 fSetupFragPosition = true;
174 }
175 SkASSERT(fProgramBuilder->fUniformHandles.fRTHeightUni.isValid());
176 return kCoordName;
177 }
178}
179
cdalton33ad7012016-02-22 07:55:44 -0800180void GrGLSLFragmentShaderBuilder::maskSampleCoverage(const char* mask, bool invert) {
181 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
182 if (!glslCaps.sampleVariablesSupport()) {
183 SkDEBUGFAIL("Attempted to mask sample coverage without support.");
184 return;
185 }
186 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
187 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
188 }
189 if (!fHasInitializedSampleMask) {
190 this->codePrependf("gl_SampleMask[0] = -1;");
191 fHasInitializedSampleMask = true;
192 }
193 if (invert) {
194 this->codeAppendf("gl_SampleMask[0] &= ~(%s);", mask);
195 } else {
196 this->codeAppendf("gl_SampleMask[0] &= %s;", mask);
197 }
198}
199
200void GrGLSLFragmentShaderBuilder::overrideSampleCoverage(const char* mask) {
201 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
202 if (!glslCaps.sampleMaskOverrideCoverageSupport()) {
203 SkDEBUGFAIL("Attempted to override sample coverage without support.");
204 return;
205 }
206 SkASSERT(glslCaps.sampleVariablesSupport());
207 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
208 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
209 }
210 if (this->addFeature(1 << kSampleMaskOverrideCoverage_GLSLPrivateFeature,
211 "GL_NV_sample_mask_override_coverage")) {
212 // Redeclare gl_SampleMask with layout(override_coverage) if we haven't already.
213 fOutputs.push_back().set(kInt_GrSLType, GrShaderVar::kOut_TypeModifier,
214 "gl_SampleMask", 1, kHigh_GrSLPrecision,
215 "override_coverage");
216 }
217 this->codeAppendf("gl_SampleMask[0] = %s;", mask);
218 fHasInitializedSampleMask = true;
219}
220
egdaniel2d721d32015-11-11 13:06:05 -0800221const char* GrGLSLFragmentShaderBuilder::dstColor() {
cdalton87332102016-02-26 12:22:02 -0800222 SkDEBUGCODE(fHasReadDstColor = true;)
joshualitt47bb3822014-10-07 16:43:25 -0700223
ethannicholas22793252016-01-30 09:59:10 -0800224 const char* override = fProgramBuilder->primitiveProcessor().getDestColorOverride();
225 if (override != nullptr) {
226 return override;
227 }
228
egdaniel472d44e2015-10-22 08:20:00 -0700229 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
230 if (glslCaps->fbFetchSupport()) {
cdaltonc08f1962016-02-12 12:14:06 -0800231 this->addFeature(1 << kFramebufferFetch_GLSLPrivateFeature,
egdaniel472d44e2015-10-22 08:20:00 -0700232 glslCaps->fbFetchExtensionString());
joshualittb4384b92014-10-21 12:53:15 -0700233
joshualitt3c1096f2015-01-13 13:13:59 -0800234 // Some versions of this extension string require declaring custom color output on ES 3.0+
egdaniel472d44e2015-10-22 08:20:00 -0700235 const char* fbFetchColorName = glslCaps->fbFetchColorName();
236 if (glslCaps->fbFetchNeedsCustomOutput()) {
joshualittb4384b92014-10-21 12:53:15 -0700237 this->enableCustomOutput();
238 fOutputs[fCustomColorOutputIndex].setTypeModifier(GrShaderVar::kInOut_TypeModifier);
egdaniel8dcdedc2015-11-11 06:27:20 -0800239 fbFetchColorName = DeclaredColorOutputName();
joshualittb4384b92014-10-21 12:53:15 -0700240 }
241 return fbFetchColorName;
bsalomon50785a32015-02-06 07:02:37 -0800242 } else {
bsalomon6a44c6a2015-05-26 09:49:05 -0700243 return kDstTextureColorName;
bsalomon50785a32015-02-06 07:02:37 -0800244 }
joshualitt47bb3822014-10-07 16:43:25 -0700245}
246
egdaniel2d721d32015-11-11 13:06:05 -0800247void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
cdalton8917d622015-05-06 13:40:21 -0700248 SkASSERT(GrBlendEquationIsAdvanced(equation));
249
egdaniel472d44e2015-10-22 08:20:00 -0700250 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
cdalton8917d622015-05-06 13:40:21 -0700251 if (!caps.mustEnableAdvBlendEqs()) {
252 return;
253 }
254
255 this->addFeature(1 << kBlendEquationAdvanced_GLSLPrivateFeature,
256 "GL_KHR_blend_equation_advanced");
257 if (caps.mustEnableSpecificAdvBlendEqs()) {
258 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
259 } else {
260 this->addLayoutQualifier("blend_support_all_equations", kOut_InterfaceQualifier);
261 }
262}
263
egdaniel2d721d32015-11-11 13:06:05 -0800264void GrGLSLFragmentShaderBuilder::enableCustomOutput() {
joshualittb4384b92014-10-21 12:53:15 -0700265 if (!fHasCustomColorOutput) {
266 fHasCustomColorOutput = true;
267 fCustomColorOutputIndex = fOutputs.count();
268 fOutputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700269 GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800270 DeclaredColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800271 fProgramBuilder->finalizeFragmentOutputColor(fOutputs.back());
joshualittb4384b92014-10-21 12:53:15 -0700272 }
joshualitt47bb3822014-10-07 16:43:25 -0700273}
274
egdaniel2d721d32015-11-11 13:06:05 -0800275void GrGLSLFragmentShaderBuilder::enableSecondaryOutput() {
joshualitt47bb3822014-10-07 16:43:25 -0700276 SkASSERT(!fHasSecondaryOutput);
277 fHasSecondaryOutput = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800278 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
279 if (const char* extension = caps.secondaryOutputExtensionString()) {
280 this->addFeature(1 << kBlendFuncExtended_GLSLPrivateFeature, extension);
kkinnunend94708e2015-07-30 22:47:04 -0700281 }
282
283 // If the primary output is declared, we must declare also the secondary output
284 // and vice versa, since it is not allowed to use a built-in gl_FragColor and a custom
285 // output. The condition also co-incides with the condition in whici GLES SL 2.0
286 // requires the built-in gl_SecondaryFragColorEXT, where as 3.0 requires a custom output.
kkinnunend94708e2015-07-30 22:47:04 -0700287 if (caps.mustDeclareFragmentShaderOutput()) {
egdaniel0d3f0612015-10-21 10:45:48 -0700288 fOutputs.push_back().set(kVec4f_GrSLType, GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800289 DeclaredSecondaryColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800290 fProgramBuilder->finalizeFragmentSecondaryColor(fOutputs.back());
kkinnunend94708e2015-07-30 22:47:04 -0700291 }
joshualitt47bb3822014-10-07 16:43:25 -0700292}
293
egdaniel2d721d32015-11-11 13:06:05 -0800294const char* GrGLSLFragmentShaderBuilder::getPrimaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800295 return fHasCustomColorOutput ? DeclaredColorOutputName() : "gl_FragColor";
joshualitt47bb3822014-10-07 16:43:25 -0700296}
297
ethannicholas22793252016-01-30 09:59:10 -0800298void GrGLSLFragmentBuilder::declAppendf(const char* fmt, ...) {
299 va_list argp;
300 va_start(argp, fmt);
301 inputs().appendVAList(fmt, argp);
302 va_end(argp);
303}
304
egdaniel2d721d32015-11-11 13:06:05 -0800305const char* GrGLSLFragmentShaderBuilder::getSecondaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800306 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
307 return caps.mustDeclareFragmentShaderOutput() ? DeclaredSecondaryColorOutputName()
kkinnunend94708e2015-07-30 22:47:04 -0700308 : "gl_SecondaryFragColorEXT";
joshualitt47bb3822014-10-07 16:43:25 -0700309}
310
egdaniel2d721d32015-11-11 13:06:05 -0800311void GrGLSLFragmentShaderBuilder::onFinalize() {
egdaniel0eafe792015-11-20 14:01:22 -0800312 fProgramBuilder->varyingHandler()->getFragDecls(&this->inputs(), &this->outputs());
egdanielcb7ba1e2015-10-26 08:38:25 -0700313 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision,
314 *fProgramBuilder->glslCaps(),
315 &this->precisionQualifier());
joshualitt30ba4362014-08-21 20:18:45 -0700316}
317
cdalton85285412016-02-18 12:37:07 -0800318void GrGLSLFragmentShaderBuilder::onBeforeChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700319 SkASSERT(fSubstageIndices.count() >= 1);
wangyix7ef45a12015-08-13 06:51:35 -0700320 fSubstageIndices.push_back(0);
wangyix54a6b1a2015-09-08 08:41:51 -0700321 // second-to-last value in the fSubstageIndices stack is the index of the child proc
322 // at that level which is currently emitting code.
323 fMangleString.appendf("_c%d", fSubstageIndices[fSubstageIndices.count() - 2]);
wangyix7ef45a12015-08-13 06:51:35 -0700324}
325
cdalton85285412016-02-18 12:37:07 -0800326void GrGLSLFragmentShaderBuilder::onAfterChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700327 SkASSERT(fSubstageIndices.count() >= 2);
wangyix7ef45a12015-08-13 06:51:35 -0700328 fSubstageIndices.pop_back();
wangyix54a6b1a2015-09-08 08:41:51 -0700329 fSubstageIndices.back()++;
wangyix7ef45a12015-08-13 06:51:35 -0700330 int removeAt = fMangleString.findLastOf('_');
331 fMangleString.remove(removeAt, fMangleString.size() - removeAt);
332}
egdaniel8dcdedc2015-11-11 06:27:20 -0800333