blob: 166e4744340e7f07ea06f64398649c60abaf680b [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"
cdalton28f45b92016-03-07 13:58:26 -080010#include "GrRenderTargetPriv.h"
ethannicholas22793252016-01-30 09:59:10 -080011#include "gl/GrGLGpu.h"
egdanielcb7ba1e2015-10-26 08:38:25 -070012#include "glsl/GrGLSL.h"
jvanverthcba99b82015-06-24 06:59:57 -070013#include "glsl/GrGLSLCaps.h"
egdaniel8dcdedc2015-11-11 06:27:20 -080014#include "glsl/GrGLSLProgramBuilder.h"
egdaniel7ea439b2015-12-03 09:20:44 -080015#include "glsl/GrGLSLUniformHandler.h"
egdaniel0eafe792015-11-20 14:01:22 -080016#include "glsl/GrGLSLVarying.h"
joshualitt47bb3822014-10-07 16:43:25 -070017
egdaniel2d721d32015-11-11 13:06:05 -080018const char* GrGLSLFragmentShaderBuilder::kDstTextureColorName = "_dstColor";
joshualitt30ba4362014-08-21 20:18:45 -070019
cdalton28f45b92016-03-07 13:58:26 -080020static const char* sample_offset_array_name(GrGLSLFPFragmentBuilder::Coordinates coords) {
21 static const char* kArrayNames[] = {
22 "deviceSpaceSampleOffsets",
23 "windowSpaceSampleOffsets"
24 };
25 return kArrayNames[coords];
26
27 GR_STATIC_ASSERT(0 == GrGLSLFPFragmentBuilder::kSkiaDevice_Coordinates);
28 GR_STATIC_ASSERT(1 == GrGLSLFPFragmentBuilder::kGLSLWindow_Coordinates);
29 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kArrayNames) == GrGLSLFPFragmentBuilder::kLast_Coordinates + 1);
30}
31
cdalton8917d622015-05-06 13:40:21 -070032static const char* specific_layout_qualifier_name(GrBlendEquation equation) {
33 SkASSERT(GrBlendEquationIsAdvanced(equation));
34
35 static const char* kLayoutQualifierNames[] = {
36 "blend_support_screen",
37 "blend_support_overlay",
38 "blend_support_darken",
39 "blend_support_lighten",
40 "blend_support_colordodge",
41 "blend_support_colorburn",
42 "blend_support_hardlight",
43 "blend_support_softlight",
44 "blend_support_difference",
45 "blend_support_exclusion",
46 "blend_support_multiply",
47 "blend_support_hsl_hue",
48 "blend_support_hsl_saturation",
49 "blend_support_hsl_color",
50 "blend_support_hsl_luminosity"
51 };
52 return kLayoutQualifierNames[equation - kFirstAdvancedGrBlendEquation];
53
54 GR_STATIC_ASSERT(0 == kScreen_GrBlendEquation - kFirstAdvancedGrBlendEquation);
55 GR_STATIC_ASSERT(1 == kOverlay_GrBlendEquation - kFirstAdvancedGrBlendEquation);
56 GR_STATIC_ASSERT(2 == kDarken_GrBlendEquation - kFirstAdvancedGrBlendEquation);
57 GR_STATIC_ASSERT(3 == kLighten_GrBlendEquation - kFirstAdvancedGrBlendEquation);
58 GR_STATIC_ASSERT(4 == kColorDodge_GrBlendEquation - kFirstAdvancedGrBlendEquation);
59 GR_STATIC_ASSERT(5 == kColorBurn_GrBlendEquation - kFirstAdvancedGrBlendEquation);
60 GR_STATIC_ASSERT(6 == kHardLight_GrBlendEquation - kFirstAdvancedGrBlendEquation);
61 GR_STATIC_ASSERT(7 == kSoftLight_GrBlendEquation - kFirstAdvancedGrBlendEquation);
62 GR_STATIC_ASSERT(8 == kDifference_GrBlendEquation - kFirstAdvancedGrBlendEquation);
63 GR_STATIC_ASSERT(9 == kExclusion_GrBlendEquation - kFirstAdvancedGrBlendEquation);
64 GR_STATIC_ASSERT(10 == kMultiply_GrBlendEquation - kFirstAdvancedGrBlendEquation);
65 GR_STATIC_ASSERT(11 == kHSLHue_GrBlendEquation - kFirstAdvancedGrBlendEquation);
66 GR_STATIC_ASSERT(12 == kHSLSaturation_GrBlendEquation - kFirstAdvancedGrBlendEquation);
67 GR_STATIC_ASSERT(13 == kHSLColor_GrBlendEquation - kFirstAdvancedGrBlendEquation);
68 GR_STATIC_ASSERT(14 == kHSLLuminosity_GrBlendEquation - kFirstAdvancedGrBlendEquation);
69 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kLayoutQualifierNames) ==
bsalomonf7cc8772015-05-11 11:21:14 -070070 kGrBlendEquationCnt - kFirstAdvancedGrBlendEquation);
cdalton8917d622015-05-06 13:40:21 -070071}
72
cdalton28f45b92016-03-07 13:58:26 -080073uint8_t GrGLSLFragmentShaderBuilder::KeyForSurfaceOrigin(GrSurfaceOrigin origin) {
74 SkASSERT(kTopLeft_GrSurfaceOrigin == origin || kBottomLeft_GrSurfaceOrigin == origin);
75 return origin;
76
77 GR_STATIC_ASSERT(1 == kTopLeft_GrSurfaceOrigin);
78 GR_STATIC_ASSERT(2 == kBottomLeft_GrSurfaceOrigin);
joshualitt30ba4362014-08-21 20:18:45 -070079}
80
cdalton28f45b92016-03-07 13:58:26 -080081GrGLSLFragmentShaderBuilder::GrGLSLFragmentShaderBuilder(GrGLSLProgramBuilder* program)
cdalton85285412016-02-18 12:37:07 -080082 : GrGLSLFragmentBuilder(program)
joshualitt30ba4362014-08-21 20:18:45 -070083 , fSetupFragPosition(false)
cdalton85285412016-02-18 12:37:07 -080084 , fHasCustomColorOutput(false)
joshualittb4384b92014-10-21 12:53:15 -070085 , fCustomColorOutputIndex(-1)
cdalton85285412016-02-18 12:37:07 -080086 , fHasSecondaryOutput(false)
cdalton28f45b92016-03-07 13:58:26 -080087 , fUsedSampleOffsetArrays(0)
cdalton87332102016-02-26 12:22:02 -080088 , fHasInitializedSampleMask(false) {
cdalton85285412016-02-18 12:37:07 -080089 fSubstageIndices.push_back(0);
cdalton87332102016-02-26 12:22:02 -080090#ifdef SK_DEBUG
91 fUsedProcessorFeatures = GrProcessor::kNone_RequiredFeatures;
92 fHasReadDstColor = false;
93#endif
94}
95
egdaniel2d721d32015-11-11 13:06:05 -080096bool GrGLSLFragmentShaderBuilder::enableFeature(GLSLFeature feature) {
cdalton4a98cdb2016-03-01 12:12:20 -080097 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
joshualitt30ba4362014-08-21 20:18:45 -070098 switch (feature) {
cdalton4a98cdb2016-03-01 12:12:20 -080099 case kStandardDerivatives_GLSLFeature:
100 if (!glslCaps.shaderDerivativeSupport()) {
joshualitt30ba4362014-08-21 20:18:45 -0700101 return false;
102 }
cdalton4a98cdb2016-03-01 12:12:20 -0800103 if (const char* extension = glslCaps.shaderDerivativeExtensionString()) {
egdaniel574a4c12015-11-02 06:22:44 -0800104 this->addFeature(1 << kStandardDerivatives_GLSLFeature, extension);
joshualitt30ba4362014-08-21 20:18:45 -0700105 }
106 return true;
cdalton4a98cdb2016-03-01 12:12:20 -0800107 case kPixelLocalStorage_GLSLFeature:
108 if (glslCaps.pixelLocalStorageSize() <= 0) {
ethannicholas22793252016-01-30 09:59:10 -0800109 return false;
110 }
111 this->addFeature(1 << kPixelLocalStorage_GLSLFeature,
112 "GL_EXT_shader_pixel_local_storage");
113 return true;
cdalton4a98cdb2016-03-01 12:12:20 -0800114 case kMultisampleInterpolation_GLSLFeature:
115 if (!glslCaps.multisampleInterpolationSupport()) {
116 return false;
117 }
118 if (const char* extension = glslCaps.multisampleInterpolationExtensionString()) {
119 this->addFeature(1 << kMultisampleInterpolation_GLSLFeature, extension);
120 }
121 return true;
joshualitt30ba4362014-08-21 20:18:45 -0700122 default:
123 SkFAIL("Unexpected GLSLFeature requested.");
124 return false;
125 }
126}
127
egdaniel2d721d32015-11-11 13:06:05 -0800128SkString GrGLSLFragmentShaderBuilder::ensureFSCoords2D(const GrGLSLTransformedCoordsArray& coords,
129 int index) {
joshualitt23e280d2014-09-18 12:26:38 -0700130 if (kVec3f_GrSLType != coords[index].getType()) {
131 SkASSERT(kVec2f_GrSLType == coords[index].getType());
joshualitt30ba4362014-08-21 20:18:45 -0700132 return coords[index].getName();
133 }
134
135 SkString coords2D("coords2D");
136 if (0 != index) {
137 coords2D.appendf("_%i", index);
138 }
139 this->codeAppendf("\tvec2 %s = %s.xy / %s.z;",
140 coords2D.c_str(), coords[index].c_str(), coords[index].c_str());
141 return coords2D;
142}
143
egdaniel2d721d32015-11-11 13:06:05 -0800144const char* GrGLSLFragmentShaderBuilder::fragmentPosition() {
cdalton87332102016-02-26 12:22:02 -0800145 SkDEBUGCODE(fUsedProcessorFeatures |= GrProcessor::kFragmentPosition_RequiredFeature;)
joshualitt30ba4362014-08-21 20:18:45 -0700146
egdaniel8dcdedc2015-11-11 06:27:20 -0800147 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
joshualitt30ba4362014-08-21 20:18:45 -0700148 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
149 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
150 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
cdalton28f45b92016-03-07 13:58:26 -0800151 if (kTopLeft_GrSurfaceOrigin == this->getSurfaceOrigin()) {
joshualitt30ba4362014-08-21 20:18:45 -0700152 fSetupFragPosition = true;
153 return "gl_FragCoord";
egdaniel8dcdedc2015-11-11 06:27:20 -0800154 } else if (const char* extension = glslCaps->fragCoordConventionsExtensionString()) {
joshualitt30ba4362014-08-21 20:18:45 -0700155 if (!fSetupFragPosition) {
egdaniel8dcdedc2015-11-11 06:27:20 -0800156 if (glslCaps->generation() < k150_GrGLSLGeneration) {
joshualitt30ba4362014-08-21 20:18:45 -0700157 this->addFeature(1 << kFragCoordConventions_GLSLPrivateFeature,
egdaniel8dcdedc2015-11-11 06:27:20 -0800158 extension);
joshualitt30ba4362014-08-21 20:18:45 -0700159 }
160 fInputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700161 GrGLSLShaderVar::kIn_TypeModifier,
joshualitt30ba4362014-08-21 20:18:45 -0700162 "gl_FragCoord",
bsalomonc0bd6482014-12-09 10:04:14 -0800163 kDefault_GrSLPrecision,
egdanielae474182016-01-21 11:19:52 -0800164 "origin_upper_left");
joshualitt30ba4362014-08-21 20:18:45 -0700165 fSetupFragPosition = true;
166 }
167 return "gl_FragCoord";
168 } else {
robertphillips18c58c72015-07-21 12:06:52 -0700169 static const char* kTempName = "tmpXYFragCoord";
joshualitt30ba4362014-08-21 20:18:45 -0700170 static const char* kCoordName = "fragCoordYDown";
171 if (!fSetupFragPosition) {
joshualitt30ba4362014-08-21 20:18:45 -0700172 const char* rtHeightName;
173
egdaniel7ea439b2015-12-03 09:20:44 -0800174 fProgramBuilder->addRTHeightUniform("RTHeight", &rtHeightName);
joshualitt30ba4362014-08-21 20:18:45 -0700175
robertphillips18c58c72015-07-21 12:06:52 -0700176 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
177 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
178 // depending on the surrounding code, accessing .xy with a uniform involved can
179 // do the same thing. Copying gl_FragCoord.xy into a temp vec2 beforehand
180 // (and only accessing .xy) seems to "fix" things.
ethannicholas1cbb5ea2015-12-14 11:37:55 -0800181 const char* precision = glslCaps->usesPrecisionModifiers() ? "highp " : "";
182 this->codePrependf("\t%svec4 %s = vec4(%s.x, %s - %s.y, 1.0, 1.0);\n",
183 precision, kCoordName, kTempName, rtHeightName, kTempName);
184 this->codePrependf("%svec2 %s = gl_FragCoord.xy;", precision, kTempName);
joshualitt30ba4362014-08-21 20:18:45 -0700185 fSetupFragPosition = true;
186 }
187 SkASSERT(fProgramBuilder->fUniformHandles.fRTHeightUni.isValid());
188 return kCoordName;
189 }
190}
191
cdalton28f45b92016-03-07 13:58:26 -0800192void GrGLSLFragmentShaderBuilder::appendOffsetToSample(const char* sampleIdx, Coordinates coords) {
193 SkASSERT(fProgramBuilder->header().fSamplePatternKey);
194 SkDEBUGCODE(fUsedProcessorFeatures |= GrProcessor::kSampleLocations_RequiredFeature);
195 if (kTopLeft_GrSurfaceOrigin == this->getSurfaceOrigin()) {
196 // With a top left origin, device and window space are equal, so we only use device coords.
197 coords = kSkiaDevice_Coordinates;
198 }
199 this->codeAppendf("%s[%s]", sample_offset_array_name(coords), sampleIdx);
200 fUsedSampleOffsetArrays |= (1 << coords);
201}
202
cdalton33ad7012016-02-22 07:55:44 -0800203void GrGLSLFragmentShaderBuilder::maskSampleCoverage(const char* mask, bool invert) {
204 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
205 if (!glslCaps.sampleVariablesSupport()) {
206 SkDEBUGFAIL("Attempted to mask sample coverage without support.");
207 return;
208 }
209 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
210 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
211 }
212 if (!fHasInitializedSampleMask) {
213 this->codePrependf("gl_SampleMask[0] = -1;");
214 fHasInitializedSampleMask = true;
215 }
216 if (invert) {
217 this->codeAppendf("gl_SampleMask[0] &= ~(%s);", mask);
218 } else {
219 this->codeAppendf("gl_SampleMask[0] &= %s;", mask);
220 }
221}
222
223void GrGLSLFragmentShaderBuilder::overrideSampleCoverage(const char* mask) {
224 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
225 if (!glslCaps.sampleMaskOverrideCoverageSupport()) {
226 SkDEBUGFAIL("Attempted to override sample coverage without support.");
227 return;
228 }
229 SkASSERT(glslCaps.sampleVariablesSupport());
230 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
231 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
232 }
233 if (this->addFeature(1 << kSampleMaskOverrideCoverage_GLSLPrivateFeature,
234 "GL_NV_sample_mask_override_coverage")) {
235 // Redeclare gl_SampleMask with layout(override_coverage) if we haven't already.
236 fOutputs.push_back().set(kInt_GrSLType, GrShaderVar::kOut_TypeModifier,
237 "gl_SampleMask", 1, kHigh_GrSLPrecision,
238 "override_coverage");
239 }
240 this->codeAppendf("gl_SampleMask[0] = %s;", mask);
241 fHasInitializedSampleMask = true;
242}
243
egdaniel2d721d32015-11-11 13:06:05 -0800244const char* GrGLSLFragmentShaderBuilder::dstColor() {
cdalton87332102016-02-26 12:22:02 -0800245 SkDEBUGCODE(fHasReadDstColor = true;)
joshualitt47bb3822014-10-07 16:43:25 -0700246
ethannicholas22793252016-01-30 09:59:10 -0800247 const char* override = fProgramBuilder->primitiveProcessor().getDestColorOverride();
248 if (override != nullptr) {
249 return override;
250 }
251
egdaniel472d44e2015-10-22 08:20:00 -0700252 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
253 if (glslCaps->fbFetchSupport()) {
cdaltonc08f1962016-02-12 12:14:06 -0800254 this->addFeature(1 << kFramebufferFetch_GLSLPrivateFeature,
egdaniel472d44e2015-10-22 08:20:00 -0700255 glslCaps->fbFetchExtensionString());
joshualittb4384b92014-10-21 12:53:15 -0700256
joshualitt3c1096f2015-01-13 13:13:59 -0800257 // Some versions of this extension string require declaring custom color output on ES 3.0+
egdaniel472d44e2015-10-22 08:20:00 -0700258 const char* fbFetchColorName = glslCaps->fbFetchColorName();
259 if (glslCaps->fbFetchNeedsCustomOutput()) {
joshualittb4384b92014-10-21 12:53:15 -0700260 this->enableCustomOutput();
261 fOutputs[fCustomColorOutputIndex].setTypeModifier(GrShaderVar::kInOut_TypeModifier);
egdaniel8dcdedc2015-11-11 06:27:20 -0800262 fbFetchColorName = DeclaredColorOutputName();
joshualittb4384b92014-10-21 12:53:15 -0700263 }
264 return fbFetchColorName;
bsalomon50785a32015-02-06 07:02:37 -0800265 } else {
bsalomon6a44c6a2015-05-26 09:49:05 -0700266 return kDstTextureColorName;
bsalomon50785a32015-02-06 07:02:37 -0800267 }
joshualitt47bb3822014-10-07 16:43:25 -0700268}
269
egdaniel2d721d32015-11-11 13:06:05 -0800270void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
cdalton8917d622015-05-06 13:40:21 -0700271 SkASSERT(GrBlendEquationIsAdvanced(equation));
272
egdaniel472d44e2015-10-22 08:20:00 -0700273 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
cdalton8917d622015-05-06 13:40:21 -0700274 if (!caps.mustEnableAdvBlendEqs()) {
275 return;
276 }
277
278 this->addFeature(1 << kBlendEquationAdvanced_GLSLPrivateFeature,
279 "GL_KHR_blend_equation_advanced");
280 if (caps.mustEnableSpecificAdvBlendEqs()) {
281 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
282 } else {
283 this->addLayoutQualifier("blend_support_all_equations", kOut_InterfaceQualifier);
284 }
285}
286
egdaniel2d721d32015-11-11 13:06:05 -0800287void GrGLSLFragmentShaderBuilder::enableCustomOutput() {
joshualittb4384b92014-10-21 12:53:15 -0700288 if (!fHasCustomColorOutput) {
289 fHasCustomColorOutput = true;
290 fCustomColorOutputIndex = fOutputs.count();
291 fOutputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700292 GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800293 DeclaredColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800294 fProgramBuilder->finalizeFragmentOutputColor(fOutputs.back());
joshualittb4384b92014-10-21 12:53:15 -0700295 }
joshualitt47bb3822014-10-07 16:43:25 -0700296}
297
egdaniel2d721d32015-11-11 13:06:05 -0800298void GrGLSLFragmentShaderBuilder::enableSecondaryOutput() {
joshualitt47bb3822014-10-07 16:43:25 -0700299 SkASSERT(!fHasSecondaryOutput);
300 fHasSecondaryOutput = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800301 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
302 if (const char* extension = caps.secondaryOutputExtensionString()) {
303 this->addFeature(1 << kBlendFuncExtended_GLSLPrivateFeature, extension);
kkinnunend94708e2015-07-30 22:47:04 -0700304 }
305
306 // If the primary output is declared, we must declare also the secondary output
307 // and vice versa, since it is not allowed to use a built-in gl_FragColor and a custom
308 // output. The condition also co-incides with the condition in whici GLES SL 2.0
309 // requires the built-in gl_SecondaryFragColorEXT, where as 3.0 requires a custom output.
kkinnunend94708e2015-07-30 22:47:04 -0700310 if (caps.mustDeclareFragmentShaderOutput()) {
egdaniel0d3f0612015-10-21 10:45:48 -0700311 fOutputs.push_back().set(kVec4f_GrSLType, GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800312 DeclaredSecondaryColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800313 fProgramBuilder->finalizeFragmentSecondaryColor(fOutputs.back());
kkinnunend94708e2015-07-30 22:47:04 -0700314 }
joshualitt47bb3822014-10-07 16:43:25 -0700315}
316
egdaniel2d721d32015-11-11 13:06:05 -0800317const char* GrGLSLFragmentShaderBuilder::getPrimaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800318 return fHasCustomColorOutput ? DeclaredColorOutputName() : "gl_FragColor";
joshualitt47bb3822014-10-07 16:43:25 -0700319}
320
ethannicholas22793252016-01-30 09:59:10 -0800321void GrGLSLFragmentBuilder::declAppendf(const char* fmt, ...) {
322 va_list argp;
323 va_start(argp, fmt);
324 inputs().appendVAList(fmt, argp);
325 va_end(argp);
326}
327
egdaniel2d721d32015-11-11 13:06:05 -0800328const char* GrGLSLFragmentShaderBuilder::getSecondaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800329 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
330 return caps.mustDeclareFragmentShaderOutput() ? DeclaredSecondaryColorOutputName()
kkinnunend94708e2015-07-30 22:47:04 -0700331 : "gl_SecondaryFragColorEXT";
joshualitt47bb3822014-10-07 16:43:25 -0700332}
333
cdalton28f45b92016-03-07 13:58:26 -0800334GrSurfaceOrigin GrGLSLFragmentShaderBuilder::getSurfaceOrigin() const {
335 SkASSERT(fProgramBuilder->header().fSurfaceOriginKey);
336 return static_cast<GrSurfaceOrigin>(fProgramBuilder->header().fSurfaceOriginKey);
337
338 GR_STATIC_ASSERT(1 == kTopLeft_GrSurfaceOrigin);
339 GR_STATIC_ASSERT(2 == kBottomLeft_GrSurfaceOrigin);
340}
341
egdaniel2d721d32015-11-11 13:06:05 -0800342void GrGLSLFragmentShaderBuilder::onFinalize() {
egdaniel0eafe792015-11-20 14:01:22 -0800343 fProgramBuilder->varyingHandler()->getFragDecls(&this->inputs(), &this->outputs());
egdanielcb7ba1e2015-10-26 08:38:25 -0700344 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision,
345 *fProgramBuilder->glslCaps(),
346 &this->precisionQualifier());
cdalton28f45b92016-03-07 13:58:26 -0800347 if (fUsedSampleOffsetArrays & (1 << kSkiaDevice_Coordinates)) {
348 this->defineSampleOffsetArray(sample_offset_array_name(kSkiaDevice_Coordinates),
349 SkMatrix::MakeTrans(-0.5f, -0.5f));
350 }
351 if (fUsedSampleOffsetArrays & (1 << kGLSLWindow_Coordinates)) {
352 // With a top left origin, device and window space are equal, so we only use device coords.
353 SkASSERT(kBottomLeft_GrSurfaceOrigin == this->getSurfaceOrigin());
354 SkMatrix m;
355 m.setScale(1, -1);
356 m.preTranslate(-0.5f, -0.5f);
357 this->defineSampleOffsetArray(sample_offset_array_name(kGLSLWindow_Coordinates), m);
358 }
359}
360
361void GrGLSLFragmentShaderBuilder::defineSampleOffsetArray(const char* name, const SkMatrix& m) {
362 SkASSERT(fProgramBuilder->caps()->sampleLocationsSupport());
363 const GrPipeline& pipeline = fProgramBuilder->pipeline();
364 const GrRenderTargetPriv& rtp = pipeline.getRenderTarget()->renderTargetPriv();
365 const GrGpu::MultisampleSpecs& specs = rtp.getMultisampleSpecs(pipeline.getStencil());
366 SkSTArray<16, SkPoint, true> offsets;
367 offsets.push_back_n(specs.fEffectiveSampleCnt);
368 m.mapPoints(offsets.begin(), specs.fSampleLocations.get(), specs.fEffectiveSampleCnt);
369 this->definitions().append("const ");
370 if (fProgramBuilder->glslCaps()->usesPrecisionModifiers()) {
371 this->definitions().append("highp ");
372 }
373 this->definitions().appendf("vec2 %s[] = vec2[](", name);
374 for (int i = 0; i < specs.fEffectiveSampleCnt; ++i) {
375 this->definitions().appendf("vec2(%f, %f)", offsets[i].x(), offsets[i].y());
376 this->definitions().append(i + 1 != specs.fEffectiveSampleCnt ? ", " : ");\n");
377 }
joshualitt30ba4362014-08-21 20:18:45 -0700378}
379
cdalton85285412016-02-18 12:37:07 -0800380void GrGLSLFragmentShaderBuilder::onBeforeChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700381 SkASSERT(fSubstageIndices.count() >= 1);
wangyix7ef45a12015-08-13 06:51:35 -0700382 fSubstageIndices.push_back(0);
wangyix54a6b1a2015-09-08 08:41:51 -0700383 // second-to-last value in the fSubstageIndices stack is the index of the child proc
384 // at that level which is currently emitting code.
385 fMangleString.appendf("_c%d", fSubstageIndices[fSubstageIndices.count() - 2]);
wangyix7ef45a12015-08-13 06:51:35 -0700386}
387
cdalton85285412016-02-18 12:37:07 -0800388void GrGLSLFragmentShaderBuilder::onAfterChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700389 SkASSERT(fSubstageIndices.count() >= 2);
wangyix7ef45a12015-08-13 06:51:35 -0700390 fSubstageIndices.pop_back();
wangyix54a6b1a2015-09-08 08:41:51 -0700391 fSubstageIndices.back()++;
wangyix7ef45a12015-08-13 06:51:35 -0700392 int removeAt = fMangleString.findLastOf('_');
393 fMangleString.remove(removeAt, fMangleString.size() - removeAt);
394}
egdaniel8dcdedc2015-11-11 06:27:20 -0800395