blob: eb744a99156c8c64a8bd4e7051cbf687ce9eb59e [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
egdaniel138c2632016-08-17 10:59:00 -070018const char* GrGLSLFragmentShaderBuilder::kDstColorName = "_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
bsalomon1a1aa932016-09-12 09:30:36 -0700128SkString GrGLSLFragmentShaderBuilder::ensureCoords2D(const GrShaderVar& coords) {
129 if (kVec3f_GrSLType != coords.getType()) {
130 SkASSERT(kVec2f_GrSLType == coords.getType());
131 return coords.getName();
joshualitt30ba4362014-08-21 20:18:45 -0700132 }
133
bsalomon1a1aa932016-09-12 09:30:36 -0700134 SkString coords2D;
135 coords2D.printf("%s_ensure2D", coords.c_str());
136 this->codeAppendf("\tvec2 %s = %s.xy / %s.z;", coords2D.c_str(), coords.c_str(),
137 coords.c_str());
joshualitt30ba4362014-08-21 20:18:45 -0700138 return coords2D;
139}
140
egdaniel2d721d32015-11-11 13:06:05 -0800141const char* GrGLSLFragmentShaderBuilder::fragmentPosition() {
cdalton87332102016-02-26 12:22:02 -0800142 SkDEBUGCODE(fUsedProcessorFeatures |= GrProcessor::kFragmentPosition_RequiredFeature;)
joshualitt30ba4362014-08-21 20:18:45 -0700143
egdaniel8dcdedc2015-11-11 06:27:20 -0800144 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
joshualitt30ba4362014-08-21 20:18:45 -0700145 // We only declare "gl_FragCoord" when we're in the case where we want to use layout qualifiers
146 // to reverse y. Otherwise it isn't necessary and whether the "in" qualifier appears in the
147 // declaration varies in earlier GLSL specs. So it is simpler to omit it.
cdalton28f45b92016-03-07 13:58:26 -0800148 if (kTopLeft_GrSurfaceOrigin == this->getSurfaceOrigin()) {
joshualitt30ba4362014-08-21 20:18:45 -0700149 fSetupFragPosition = true;
150 return "gl_FragCoord";
egdaniel8dcdedc2015-11-11 06:27:20 -0800151 } else if (const char* extension = glslCaps->fragCoordConventionsExtensionString()) {
joshualitt30ba4362014-08-21 20:18:45 -0700152 if (!fSetupFragPosition) {
egdaniel8dcdedc2015-11-11 06:27:20 -0800153 if (glslCaps->generation() < k150_GrGLSLGeneration) {
joshualitt30ba4362014-08-21 20:18:45 -0700154 this->addFeature(1 << kFragCoordConventions_GLSLPrivateFeature,
egdaniel8dcdedc2015-11-11 06:27:20 -0800155 extension);
joshualitt30ba4362014-08-21 20:18:45 -0700156 }
157 fInputs.push_back().set(kVec4f_GrSLType,
egdaniel0d3f0612015-10-21 10:45:48 -0700158 GrGLSLShaderVar::kIn_TypeModifier,
joshualitt30ba4362014-08-21 20:18:45 -0700159 "gl_FragCoord",
bsalomonc0bd6482014-12-09 10:04:14 -0800160 kDefault_GrSLPrecision,
egdanielae474182016-01-21 11:19:52 -0800161 "origin_upper_left");
joshualitt30ba4362014-08-21 20:18:45 -0700162 fSetupFragPosition = true;
163 }
164 return "gl_FragCoord";
165 } else {
robertphillips18c58c72015-07-21 12:06:52 -0700166 static const char* kTempName = "tmpXYFragCoord";
joshualitt30ba4362014-08-21 20:18:45 -0700167 static const char* kCoordName = "fragCoordYDown";
168 if (!fSetupFragPosition) {
joshualitt30ba4362014-08-21 20:18:45 -0700169 const char* rtHeightName;
170
egdaniel7ea439b2015-12-03 09:20:44 -0800171 fProgramBuilder->addRTHeightUniform("RTHeight", &rtHeightName);
joshualitt30ba4362014-08-21 20:18:45 -0700172
robertphillips18c58c72015-07-21 12:06:52 -0700173 // The Adreno compiler seems to be very touchy about access to "gl_FragCoord".
174 // Accessing glFragCoord.zw can cause a program to fail to link. Additionally,
175 // depending on the surrounding code, accessing .xy with a uniform involved can
halcanary9d524f22016-03-29 09:03:52 -0700176 // do the same thing. Copying gl_FragCoord.xy into a temp vec2 beforehand
robertphillips18c58c72015-07-21 12:06:52 -0700177 // (and only accessing .xy) seems to "fix" things.
ethannicholas1cbb5ea2015-12-14 11:37:55 -0800178 const char* precision = glslCaps->usesPrecisionModifiers() ? "highp " : "";
179 this->codePrependf("\t%svec4 %s = vec4(%s.x, %s - %s.y, 1.0, 1.0);\n",
180 precision, kCoordName, kTempName, rtHeightName, kTempName);
181 this->codePrependf("%svec2 %s = gl_FragCoord.xy;", precision, kTempName);
joshualitt30ba4362014-08-21 20:18:45 -0700182 fSetupFragPosition = true;
183 }
184 SkASSERT(fProgramBuilder->fUniformHandles.fRTHeightUni.isValid());
185 return kCoordName;
186 }
187}
188
dvonbeck9b03e7b2016-08-01 11:01:56 -0700189const char* GrGLSLFragmentShaderBuilder::distanceVectorName() const {
190 return "fsDistanceVector";
191}
192
cdalton28f45b92016-03-07 13:58:26 -0800193void GrGLSLFragmentShaderBuilder::appendOffsetToSample(const char* sampleIdx, Coordinates coords) {
194 SkASSERT(fProgramBuilder->header().fSamplePatternKey);
195 SkDEBUGCODE(fUsedProcessorFeatures |= GrProcessor::kSampleLocations_RequiredFeature);
196 if (kTopLeft_GrSurfaceOrigin == this->getSurfaceOrigin()) {
197 // With a top left origin, device and window space are equal, so we only use device coords.
198 coords = kSkiaDevice_Coordinates;
199 }
200 this->codeAppendf("%s[%s]", sample_offset_array_name(coords), sampleIdx);
201 fUsedSampleOffsetArrays |= (1 << coords);
202}
203
cdalton33ad7012016-02-22 07:55:44 -0800204void GrGLSLFragmentShaderBuilder::maskSampleCoverage(const char* mask, bool invert) {
205 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
206 if (!glslCaps.sampleVariablesSupport()) {
207 SkDEBUGFAIL("Attempted to mask sample coverage without support.");
208 return;
209 }
210 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
211 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
212 }
213 if (!fHasInitializedSampleMask) {
214 this->codePrependf("gl_SampleMask[0] = -1;");
215 fHasInitializedSampleMask = true;
216 }
217 if (invert) {
218 this->codeAppendf("gl_SampleMask[0] &= ~(%s);", mask);
219 } else {
220 this->codeAppendf("gl_SampleMask[0] &= %s;", mask);
221 }
222}
223
224void GrGLSLFragmentShaderBuilder::overrideSampleCoverage(const char* mask) {
225 const GrGLSLCaps& glslCaps = *fProgramBuilder->glslCaps();
226 if (!glslCaps.sampleMaskOverrideCoverageSupport()) {
227 SkDEBUGFAIL("Attempted to override sample coverage without support.");
228 return;
229 }
230 SkASSERT(glslCaps.sampleVariablesSupport());
231 if (const char* extension = glslCaps.sampleVariablesExtensionString()) {
232 this->addFeature(1 << kSampleVariables_GLSLPrivateFeature, extension);
233 }
234 if (this->addFeature(1 << kSampleMaskOverrideCoverage_GLSLPrivateFeature,
235 "GL_NV_sample_mask_override_coverage")) {
236 // Redeclare gl_SampleMask with layout(override_coverage) if we haven't already.
237 fOutputs.push_back().set(kInt_GrSLType, GrShaderVar::kOut_TypeModifier,
238 "gl_SampleMask", 1, kHigh_GrSLPrecision,
239 "override_coverage");
240 }
241 this->codeAppendf("gl_SampleMask[0] = %s;", mask);
242 fHasInitializedSampleMask = true;
243}
244
egdaniel2d721d32015-11-11 13:06:05 -0800245const char* GrGLSLFragmentShaderBuilder::dstColor() {
cdalton87332102016-02-26 12:22:02 -0800246 SkDEBUGCODE(fHasReadDstColor = true;)
joshualitt47bb3822014-10-07 16:43:25 -0700247
ethannicholas22793252016-01-30 09:59:10 -0800248 const char* override = fProgramBuilder->primitiveProcessor().getDestColorOverride();
249 if (override != nullptr) {
250 return override;
251 }
252
egdaniel472d44e2015-10-22 08:20:00 -0700253 const GrGLSLCaps* glslCaps = fProgramBuilder->glslCaps();
254 if (glslCaps->fbFetchSupport()) {
cdaltonc08f1962016-02-12 12:14:06 -0800255 this->addFeature(1 << kFramebufferFetch_GLSLPrivateFeature,
egdaniel472d44e2015-10-22 08:20:00 -0700256 glslCaps->fbFetchExtensionString());
joshualittb4384b92014-10-21 12:53:15 -0700257
joshualitt3c1096f2015-01-13 13:13:59 -0800258 // Some versions of this extension string require declaring custom color output on ES 3.0+
egdaniel472d44e2015-10-22 08:20:00 -0700259 const char* fbFetchColorName = glslCaps->fbFetchColorName();
260 if (glslCaps->fbFetchNeedsCustomOutput()) {
joshualittb4384b92014-10-21 12:53:15 -0700261 this->enableCustomOutput();
262 fOutputs[fCustomColorOutputIndex].setTypeModifier(GrShaderVar::kInOut_TypeModifier);
egdaniel8dcdedc2015-11-11 06:27:20 -0800263 fbFetchColorName = DeclaredColorOutputName();
egdaniel138c2632016-08-17 10:59:00 -0700264 // Set the dstColor to an intermediate variable so we don't override it with the output
265 this->codeAppendf("vec4 %s = %s;", kDstColorName, fbFetchColorName);
egdanielbd4121a2016-08-17 12:55:30 -0700266 } else {
267 return fbFetchColorName;
joshualittb4384b92014-10-21 12:53:15 -0700268 }
halcanary9d524f22016-03-29 09:03:52 -0700269 }
egdaniel138c2632016-08-17 10:59:00 -0700270 return kDstColorName;
joshualitt47bb3822014-10-07 16:43:25 -0700271}
272
egdaniel2d721d32015-11-11 13:06:05 -0800273void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
cdalton8917d622015-05-06 13:40:21 -0700274 SkASSERT(GrBlendEquationIsAdvanced(equation));
275
egdaniel472d44e2015-10-22 08:20:00 -0700276 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
cdalton8917d622015-05-06 13:40:21 -0700277 if (!caps.mustEnableAdvBlendEqs()) {
278 return;
279 }
280
281 this->addFeature(1 << kBlendEquationAdvanced_GLSLPrivateFeature,
282 "GL_KHR_blend_equation_advanced");
283 if (caps.mustEnableSpecificAdvBlendEqs()) {
284 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
285 } else {
286 this->addLayoutQualifier("blend_support_all_equations", kOut_InterfaceQualifier);
287 }
288}
289
egdaniel2d721d32015-11-11 13:06:05 -0800290void GrGLSLFragmentShaderBuilder::enableCustomOutput() {
joshualittb4384b92014-10-21 12:53:15 -0700291 if (!fHasCustomColorOutput) {
292 fHasCustomColorOutput = true;
293 fCustomColorOutputIndex = fOutputs.count();
ethannicholas5961bc92016-10-12 06:39:56 -0700294 fOutputs.push_back().set(kVec4f_GrSLType,
295 GrGLSLShaderVar::kOut_TypeModifier,
296 DeclaredColorOutputName());
297 fProgramBuilder->finalizeFragmentOutputColor(fOutputs.back());
joshualittb4384b92014-10-21 12:53:15 -0700298 }
joshualitt47bb3822014-10-07 16:43:25 -0700299}
300
egdaniel2d721d32015-11-11 13:06:05 -0800301void GrGLSLFragmentShaderBuilder::enableSecondaryOutput() {
joshualitt47bb3822014-10-07 16:43:25 -0700302 SkASSERT(!fHasSecondaryOutput);
303 fHasSecondaryOutput = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800304 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
305 if (const char* extension = caps.secondaryOutputExtensionString()) {
306 this->addFeature(1 << kBlendFuncExtended_GLSLPrivateFeature, extension);
kkinnunend94708e2015-07-30 22:47:04 -0700307 }
308
309 // If the primary output is declared, we must declare also the secondary output
310 // and vice versa, since it is not allowed to use a built-in gl_FragColor and a custom
311 // output. The condition also co-incides with the condition in whici GLES SL 2.0
312 // requires the built-in gl_SecondaryFragColorEXT, where as 3.0 requires a custom output.
kkinnunend94708e2015-07-30 22:47:04 -0700313 if (caps.mustDeclareFragmentShaderOutput()) {
egdaniel0d3f0612015-10-21 10:45:48 -0700314 fOutputs.push_back().set(kVec4f_GrSLType, GrGLSLShaderVar::kOut_TypeModifier,
egdaniel8dcdedc2015-11-11 06:27:20 -0800315 DeclaredSecondaryColorOutputName());
egdanielb80ec8b2016-02-09 09:54:43 -0800316 fProgramBuilder->finalizeFragmentSecondaryColor(fOutputs.back());
kkinnunend94708e2015-07-30 22:47:04 -0700317 }
joshualitt47bb3822014-10-07 16:43:25 -0700318}
319
egdaniel2d721d32015-11-11 13:06:05 -0800320const char* GrGLSLFragmentShaderBuilder::getPrimaryColorOutputName() const {
ethannicholas5961bc92016-10-12 06:39:56 -0700321 return fHasCustomColorOutput ? DeclaredColorOutputName() : "sk_FragColor";
joshualitt47bb3822014-10-07 16:43:25 -0700322}
323
ethannicholas22793252016-01-30 09:59:10 -0800324void GrGLSLFragmentBuilder::declAppendf(const char* fmt, ...) {
325 va_list argp;
326 va_start(argp, fmt);
327 inputs().appendVAList(fmt, argp);
halcanary9d524f22016-03-29 09:03:52 -0700328 va_end(argp);
ethannicholas22793252016-01-30 09:59:10 -0800329}
330
egdaniel2d721d32015-11-11 13:06:05 -0800331const char* GrGLSLFragmentShaderBuilder::getSecondaryColorOutputName() const {
egdaniel8dcdedc2015-11-11 06:27:20 -0800332 const GrGLSLCaps& caps = *fProgramBuilder->glslCaps();
333 return caps.mustDeclareFragmentShaderOutput() ? DeclaredSecondaryColorOutputName()
kkinnunend94708e2015-07-30 22:47:04 -0700334 : "gl_SecondaryFragColorEXT";
joshualitt47bb3822014-10-07 16:43:25 -0700335}
336
cdalton28f45b92016-03-07 13:58:26 -0800337GrSurfaceOrigin GrGLSLFragmentShaderBuilder::getSurfaceOrigin() const {
338 SkASSERT(fProgramBuilder->header().fSurfaceOriginKey);
339 return static_cast<GrSurfaceOrigin>(fProgramBuilder->header().fSurfaceOriginKey);
340
341 GR_STATIC_ASSERT(1 == kTopLeft_GrSurfaceOrigin);
342 GR_STATIC_ASSERT(2 == kBottomLeft_GrSurfaceOrigin);
343}
344
egdaniel2d721d32015-11-11 13:06:05 -0800345void GrGLSLFragmentShaderBuilder::onFinalize() {
egdaniel0eafe792015-11-20 14:01:22 -0800346 fProgramBuilder->varyingHandler()->getFragDecls(&this->inputs(), &this->outputs());
egdanielcb7ba1e2015-10-26 08:38:25 -0700347 GrGLSLAppendDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision,
348 *fProgramBuilder->glslCaps(),
349 &this->precisionQualifier());
cdalton28f45b92016-03-07 13:58:26 -0800350 if (fUsedSampleOffsetArrays & (1 << kSkiaDevice_Coordinates)) {
351 this->defineSampleOffsetArray(sample_offset_array_name(kSkiaDevice_Coordinates),
352 SkMatrix::MakeTrans(-0.5f, -0.5f));
353 }
354 if (fUsedSampleOffsetArrays & (1 << kGLSLWindow_Coordinates)) {
355 // With a top left origin, device and window space are equal, so we only use device coords.
356 SkASSERT(kBottomLeft_GrSurfaceOrigin == this->getSurfaceOrigin());
357 SkMatrix m;
358 m.setScale(1, -1);
359 m.preTranslate(-0.5f, -0.5f);
360 this->defineSampleOffsetArray(sample_offset_array_name(kGLSLWindow_Coordinates), m);
361 }
362}
363
364void GrGLSLFragmentShaderBuilder::defineSampleOffsetArray(const char* name, const SkMatrix& m) {
365 SkASSERT(fProgramBuilder->caps()->sampleLocationsSupport());
366 const GrPipeline& pipeline = fProgramBuilder->pipeline();
367 const GrRenderTargetPriv& rtp = pipeline.getRenderTarget()->renderTargetPriv();
368 const GrGpu::MultisampleSpecs& specs = rtp.getMultisampleSpecs(pipeline.getStencil());
369 SkSTArray<16, SkPoint, true> offsets;
370 offsets.push_back_n(specs.fEffectiveSampleCnt);
csmartdalton0d28e572016-07-06 09:59:43 -0700371 m.mapPoints(offsets.begin(), specs.fSampleLocations, specs.fEffectiveSampleCnt);
cdalton28f45b92016-03-07 13:58:26 -0800372 this->definitions().append("const ");
373 if (fProgramBuilder->glslCaps()->usesPrecisionModifiers()) {
374 this->definitions().append("highp ");
375 }
376 this->definitions().appendf("vec2 %s[] = vec2[](", name);
377 for (int i = 0; i < specs.fEffectiveSampleCnt; ++i) {
378 this->definitions().appendf("vec2(%f, %f)", offsets[i].x(), offsets[i].y());
379 this->definitions().append(i + 1 != specs.fEffectiveSampleCnt ? ", " : ");\n");
380 }
joshualitt30ba4362014-08-21 20:18:45 -0700381}
382
cdalton85285412016-02-18 12:37:07 -0800383void GrGLSLFragmentShaderBuilder::onBeforeChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700384 SkASSERT(fSubstageIndices.count() >= 1);
wangyix7ef45a12015-08-13 06:51:35 -0700385 fSubstageIndices.push_back(0);
wangyix54a6b1a2015-09-08 08:41:51 -0700386 // second-to-last value in the fSubstageIndices stack is the index of the child proc
387 // at that level which is currently emitting code.
388 fMangleString.appendf("_c%d", fSubstageIndices[fSubstageIndices.count() - 2]);
wangyix7ef45a12015-08-13 06:51:35 -0700389}
390
cdalton85285412016-02-18 12:37:07 -0800391void GrGLSLFragmentShaderBuilder::onAfterChildProcEmitCode() {
wangyix54a6b1a2015-09-08 08:41:51 -0700392 SkASSERT(fSubstageIndices.count() >= 2);
wangyix7ef45a12015-08-13 06:51:35 -0700393 fSubstageIndices.pop_back();
wangyix54a6b1a2015-09-08 08:41:51 -0700394 fSubstageIndices.back()++;
wangyix7ef45a12015-08-13 06:51:35 -0700395 int removeAt = fMangleString.findLastOf('_');
396 fMangleString.remove(removeAt, fMangleString.size() - removeAt);
397}