blob: 44db57e68d840067e7cd6da474b026bb60e84366 [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)
cdalton33ad7012016-02-22 07:55:44 -080077 , fHasInitializedSampleMask(false)
joshualitt47bb3822014-10-07 16:43:25 -070078 , fHasReadDstColor(false)
79 , fHasReadFragmentPosition(false) {
cdalton85285412016-02-18 12:37:07 -080080 fSubstageIndices.push_back(0);
joshualitt30ba4362014-08-21 20:18:45 -070081}
82
egdaniel2d721d32015-11-11 13:06:05 -080083bool GrGLSLFragmentShaderBuilder::enableFeature(GLSLFeature feature) {
joshualitt30ba4362014-08-21 20:18:45 -070084 switch (feature) {
benjaminwagner1751dc72016-02-12 15:20:55 -080085 case kStandardDerivatives_GLSLFeature: {
86 if (!fProgramBuilder->glslCaps()->shaderDerivativeSupport()) {
joshualitt30ba4362014-08-21 20:18:45 -070087 return false;
88 }
benjaminwagner1751dc72016-02-12 15:20:55 -080089 const char* extension = fProgramBuilder->glslCaps()->shaderDerivativeExtensionString();
90 if (extension) {
egdaniel574a4c12015-11-02 06:22:44 -080091 this->addFeature(1 << kStandardDerivatives_GLSLFeature, extension);
joshualitt30ba4362014-08-21 20:18:45 -070092 }
93 return true;
benjaminwagner1751dc72016-02-12 15:20:55 -080094 }
95 case kPixelLocalStorage_GLSLFeature: {
ethannicholas22793252016-01-30 09:59:10 -080096 if (fProgramBuilder->glslCaps()->pixelLocalStorageSize() <= 0) {
97 return false;
98 }
99 this->addFeature(1 << kPixelLocalStorage_GLSLFeature,
100 "GL_EXT_shader_pixel_local_storage");
101 return true;
benjaminwagner1751dc72016-02-12 15:20:55 -0800102 }
joshualitt30ba4362014-08-21 20:18:45 -0700103 default:
104 SkFAIL("Unexpected GLSLFeature requested.");
105 return false;
106 }
107}
108
egdaniel2d721d32015-11-11 13:06:05 -0800109SkString GrGLSLFragmentShaderBuilder::ensureFSCoords2D(const GrGLSLTransformedCoordsArray& coords,
110 int index) {
joshualitt23e280d2014-09-18 12:26:38 -0700111 if (kVec3f_GrSLType != coords[index].getType()) {
112 SkASSERT(kVec2f_GrSLType == coords[index].getType());
joshualitt30ba4362014-08-21 20:18:45 -0700113 return coords[index].getName();
114 }
115
116 SkString coords2D("coords2D");
117 if (0 != index) {
118 coords2D.appendf("_%i", index);
119 }
120 this->codeAppendf("\tvec2 %s = %s.xy / %s.z;",
121 coords2D.c_str(), coords[index].c_str(), coords[index].c_str());
122 return coords2D;
123}
124
egdaniel2d721d32015-11-11 13:06:05 -0800125const char* GrGLSLFragmentShaderBuilder::fragmentPosition() {
joshualitt47bb3822014-10-07 16:43:25 -0700126 fHasReadFragmentPosition = true;
joshualitt30ba4362014-08-21 20:18:45 -0700127
egdaniel8dcdedc2015-11-11 06:27:20 -0800128 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
joshualitt30ba4362014-08-21 20:18:45 -0700129 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
130 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
131 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
132 if (fTopLeftFragPosRead) {
133 fSetupFragPosition = true;
134 return "gl_FragCoord";
egdaniel8dcdedc2015-11-11 06:27:20 -0800135 } else if (const char* extension = glslCaps->fragCoordConventionsExtensionString()) {
joshualitt30ba4362014-08-21 20:18:45 -0700136 if (!fSetupFragPosition) {
egdaniel8dcdedc2015-11-11 06:27:20 -0800137 if (glslCaps->generation() < k150_GrGLSLGeneration) {
joshualitt30ba4362014-08-21 20:18:45 -0700138 this->addFeature(1 << kFragCoordConventions_GLSLPrivateFeature,
egdaniel8dcdedc2015-11-11 06:27:20 -0800139 extension);
joshualitt30ba4362014-08-21 20:18:45 -0700140 }
141 fInputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700142 GrGLSLShaderVar::kIn_TypeModifier,
joshualitt30ba4362014-08-21 20:18:45 -0700143 "gl_FragCoord",
bsalomonc0bd6482014-12-09 10:04:14 -0800144 kDefault_GrSLPrecision,
egdanielae474182016-01-21 11:19:52 -0800145 "origin_upper_left");
joshualitt30ba4362014-08-21 20:18:45 -0700146 fSetupFragPosition = true;
147 }
148 return "gl_FragCoord";
149 } else {
robertphillips18c58c72015-07-21 12:06:52 -0700150 static const char* kTempName = "tmpXYFragCoord";
joshualitt30ba4362014-08-21 20:18:45 -0700151 static const char* kCoordName = "fragCoordYDown";
152 if (!fSetupFragPosition) {
joshualitt30ba4362014-08-21 20:18:45 -0700153 const char* rtHeightName;
154
egdaniel7ea439b2015-12-03 09:20:44 -0800155 fProgramBuilder->addRTHeightUniform("RTHeight", &rtHeightName);
joshualitt30ba4362014-08-21 20:18:45 -0700156
robertphillips18c58c72015-07-21 12:06:52 -0700157 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
158 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
159 // depending on the surrounding code, accessing .xy with a uniform involved can
160 // do the same thing. Copying gl_FragCoord.xy into a temp vec2 beforehand
161 // (and only accessing .xy) seems to "fix" things.
ethannicholas1cbb5ea2015-12-14 11:37:55 -0800162 const char* precision = glslCaps->usesPrecisionModifiers() ? "highp " : "";
163 this->codePrependf("\t%svec4 %s = vec4(%s.x, %s - %s.y, 1.0, 1.0);\n",
164 precision, kCoordName, kTempName, rtHeightName, kTempName);
165 this->codePrependf("%svec2 %s = gl_FragCoord.xy;", precision, kTempName);
joshualitt30ba4362014-08-21 20:18:45 -0700166 fSetupFragPosition = true;
167 }
168 SkASSERT(fProgramBuilder->fUniformHandles.fRTHeightUni.isValid());
169 return kCoordName;
170 }
171}
172
cdalton33ad7012016-02-22 07:55:44 -0800173void GrGLSLFragmentShaderBuilder::maskSampleCoverage(const char* mask, bool invert) {
174 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
175 if (!glslCaps.sampleVariablesSupport()) {
176 SkDEBUGFAIL("Attempted to mask sample coverage without support.");
177 return;
178 }
179 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
180 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
181 }
182 if (!fHasInitializedSampleMask) {
183 this->codePrependf("gl_SampleMask[0] = -1;");
184 fHasInitializedSampleMask = true;
185 }
186 if (invert) {
187 this->codeAppendf("gl_SampleMask[0] &= ~(%s);", mask);
188 } else {
189 this->codeAppendf("gl_SampleMask[0] &= %s;", mask);
190 }
191}
192
193void GrGLSLFragmentShaderBuilder::overrideSampleCoverage(const char* mask) {
194 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
195 if (!glslCaps.sampleMaskOverrideCoverageSupport()) {
196 SkDEBUGFAIL("Attempted to override sample coverage without support.");
197 return;
198 }
199 SkASSERT(glslCaps.sampleVariablesSupport());
200 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
201 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
202 }
203 if (this->addFeature(1 << kSampleMaskOverrideCoverage_GLSLPrivateFeature,
204 "GL_NV_sample_mask_override_coverage")) {
205 // Redeclare gl_SampleMask with layout(override_coverage) if we haven't already.
206 fOutputs.push_back().set(kInt_GrSLType, GrShaderVar::kOut_TypeModifier,
207 "gl_SampleMask", 1, kHigh_GrSLPrecision,
208 "override_coverage");
209 }
210 this->codeAppendf("gl_SampleMask[0] = %s;", mask);
211 fHasInitializedSampleMask = true;
212}
213
egdaniel2d721d32015-11-11 13:06:05 -0800214const char* GrGLSLFragmentShaderBuilder::dstColor() {
joshualitt47bb3822014-10-07 16:43:25 -0700215 fHasReadDstColor = true;
216
ethannicholas22793252016-01-30 09:59:10 -0800217 const char* override = fProgramBuilder->primitiveProcessor().getDestColorOverride();
218 if (override != nullptr) {
219 return override;
220 }
221
egdaniel472d44e2015-10-22 08:20:00 -0700222 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
223 if (glslCaps->fbFetchSupport()) {
cdaltonc08f1962016-02-12 12:14:06 -0800224 this->addFeature(1 << kFramebufferFetch_GLSLPrivateFeature,
egdaniel472d44e2015-10-22 08:20:00 -0700225 glslCaps->fbFetchExtensionString());
joshualittb4384b92014-10-21 12:53:15 -0700226
joshualitt3c1096f2015-01-13 13:13:59 -0800227 // Some versions of this extension string require declaring custom color output on ES 3.0+
egdaniel472d44e2015-10-22 08:20:00 -0700228 const char* fbFetchColorName = glslCaps->fbFetchColorName();
229 if (glslCaps->fbFetchNeedsCustomOutput()) {
joshualittb4384b92014-10-21 12:53:15 -0700230 this->enableCustomOutput();
231 fOutputs[fCustomColorOutputIndex].setTypeModifier(GrShaderVar::kInOut_TypeModifier);
egdaniel8dcdedc2015-11-11 06:27:20 -0800232 fbFetchColorName = DeclaredColorOutputName();
joshualittb4384b92014-10-21 12:53:15 -0700233 }
234 return fbFetchColorName;
bsalomon50785a32015-02-06 07:02:37 -0800235 } else {
bsalomon6a44c6a2015-05-26 09:49:05 -0700236 return kDstTextureColorName;
bsalomon50785a32015-02-06 07:02:37 -0800237 }
joshualitt47bb3822014-10-07 16:43:25 -0700238}
239
egdaniel2d721d32015-11-11 13:06:05 -0800240void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
cdalton8917d622015-05-06 13:40:21 -0700241 SkASSERT(GrBlendEquationIsAdvanced(equation));
242
egdaniel472d44e2015-10-22 08:20:00 -0700243 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
cdalton8917d622015-05-06 13:40:21 -0700244 if (!caps.mustEnableAdvBlendEqs()) {
245 return;
246 }
247
248 this->addFeature(1 << kBlendEquationAdvanced_GLSLPrivateFeature,
249 "GL_KHR_blend_equation_advanced");
250 if (caps.mustEnableSpecificAdvBlendEqs()) {
251 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
252 } else {
253 this->addLayoutQualifier("blend_support_all_equations", kOut_InterfaceQualifier);
254 }
255}
256
egdaniel2d721d32015-11-11 13:06:05 -0800257void GrGLSLFragmentShaderBuilder::enableCustomOutput() {
joshualittb4384b92014-10-21 12:53:15 -0700258 if (!fHasCustomColorOutput) {
259 fHasCustomColorOutput = true;
260 fCustomColorOutputIndex = fOutputs.count();
261 fOutputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700262 GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800263 DeclaredColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800264 fProgramBuilder->finalizeFragmentOutputColor(fOutputs.back());
joshualittb4384b92014-10-21 12:53:15 -0700265 }
joshualitt47bb3822014-10-07 16:43:25 -0700266}
267
egdaniel2d721d32015-11-11 13:06:05 -0800268void GrGLSLFragmentShaderBuilder::enableSecondaryOutput() {
joshualitt47bb3822014-10-07 16:43:25 -0700269 SkASSERT(!fHasSecondaryOutput);
270 fHasSecondaryOutput = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800271 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
272 if (const char* extension = caps.secondaryOutputExtensionString()) {
273 this->addFeature(1 << kBlendFuncExtended_GLSLPrivateFeature, extension);
kkinnunend94708e2015-07-30 22:47:04 -0700274 }
275
276 // If the primary output is declared, we must declare also the secondary output
277 // and vice versa, since it is not allowed to use a built-in gl_FragColor and a custom
278 // output. The condition also co-incides with the condition in whici GLES SL 2.0
279 // requires the built-in gl_SecondaryFragColorEXT, where as 3.0 requires a custom output.
kkinnunend94708e2015-07-30 22:47:04 -0700280 if (caps.mustDeclareFragmentShaderOutput()) {
egdaniel0d3f0612015-10-21 10:45:48 -0700281 fOutputs.push_back().set(kVec4f_GrSLType, GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800282 DeclaredSecondaryColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800283 fProgramBuilder->finalizeFragmentSecondaryColor(fOutputs.back());
kkinnunend94708e2015-07-30 22:47:04 -0700284 }
joshualitt47bb3822014-10-07 16:43:25 -0700285}
286
egdaniel2d721d32015-11-11 13:06:05 -0800287const char* GrGLSLFragmentShaderBuilder::getPrimaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800288 return fHasCustomColorOutput ? DeclaredColorOutputName() : "gl_FragColor";
joshualitt47bb3822014-10-07 16:43:25 -0700289}
290
ethannicholas22793252016-01-30 09:59:10 -0800291void GrGLSLFragmentBuilder::declAppendf(const char* fmt, ...) {
292 va_list argp;
293 va_start(argp, fmt);
294 inputs().appendVAList(fmt, argp);
295 va_end(argp);
296}
297
egdaniel2d721d32015-11-11 13:06:05 -0800298const char* GrGLSLFragmentShaderBuilder::getSecondaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800299 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
300 return caps.mustDeclareFragmentShaderOutput() ? DeclaredSecondaryColorOutputName()
kkinnunend94708e2015-07-30 22:47:04 -0700301 : "gl_SecondaryFragColorEXT";
joshualitt47bb3822014-10-07 16:43:25 -0700302}
303
egdaniel2d721d32015-11-11 13:06:05 -0800304void GrGLSLFragmentShaderBuilder::onFinalize() {
egdaniel0eafe792015-11-20 14:01:22 -0800305 fProgramBuilder->varyingHandler()->getFragDecls(&this->inputs(), &this->outputs());
egdanielcb7ba1e2015-10-26 08:38:25 -0700306 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision,
307 *fProgramBuilder->glslCaps(),
308 &this->precisionQualifier());
joshualitt30ba4362014-08-21 20:18:45 -0700309}
310
cdalton85285412016-02-18 12:37:07 -0800311void GrGLSLFragmentShaderBuilder::onBeforeChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700312 SkASSERT(fSubstageIndices.count() >= 1);
wangyix7ef45a12015-08-13 06:51:35 -0700313 fSubstageIndices.push_back(0);
wangyix54a6b1a2015-09-08 08:41:51 -0700314 // second-to-last value in the fSubstageIndices stack is the index of the child proc
315 // at that level which is currently emitting code.
316 fMangleString.appendf("_c%d", fSubstageIndices[fSubstageIndices.count() - 2]);
wangyix7ef45a12015-08-13 06:51:35 -0700317}
318
cdalton85285412016-02-18 12:37:07 -0800319void GrGLSLFragmentShaderBuilder::onAfterChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700320 SkASSERT(fSubstageIndices.count() >= 2);
wangyix7ef45a12015-08-13 06:51:35 -0700321 fSubstageIndices.pop_back();
wangyix54a6b1a2015-09-08 08:41:51 -0700322 fSubstageIndices.back()++;
wangyix7ef45a12015-08-13 06:51:35 -0700323 int removeAt = fMangleString.findLastOf('_');
324 fMangleString.remove(removeAt, fMangleString.size() - removeAt);
325}
egdaniel8dcdedc2015-11-11 06:27:20 -0800326