blob: 2476c5532cc3cd89cc14af1c7ccdf4e53ccc6112 [file] [log] [blame]
bsalomon@google.com798c8c42013-03-27 19:50:27 +00001/*
2 * Copyright 2013 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 */
bsalomon@google.com798c8c42013-03-27 19:50:27 +00007#include "GrGLProgramDesc.h"
joshualitt79f8fae2014-10-28 17:59:26 -07008
9#include "GrGLProcessor.h"
joshualittb0a8a372014-09-23 09:50:21 -070010#include "GrProcessor.h"
bsalomon@google.com798c8c42013-03-27 19:50:27 +000011#include "GrGpuGL.h"
egdaniel170f90b2014-09-16 12:54:40 -070012#include "GrOptDrawState.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000013#include "SkChecksum.h"
joshualitt79f8fae2014-10-28 17:59:26 -070014#include "gl/builders/GrGLFragmentShaderBuilder.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000015
joshualitt23e280d2014-09-18 12:26:38 -070016/**
joshualitt23e280d2014-09-18 12:26:38 -070017 * Do we need to either map r,g,b->a or a->r. configComponentMask indicates which channels are
18 * present in the texture's config. swizzleComponentMask indicates the channels present in the
19 * shader swizzle.
20 */
21static bool swizzle_requires_alpha_remapping(const GrGLCaps& caps,
22 uint32_t configComponentMask,
23 uint32_t swizzleComponentMask) {
24 if (caps.textureSwizzleSupport()) {
25 // Any remapping is handled using texture swizzling not shader modifications.
26 return false;
27 }
28 // check if the texture is alpha-only
29 if (kA_GrColorComponentFlag == configComponentMask) {
30 if (caps.textureRedSupport() && (kA_GrColorComponentFlag & swizzleComponentMask)) {
31 // we must map the swizzle 'a's to 'r'.
32 return true;
33 }
34 if (kRGB_GrColorComponentFlags & swizzleComponentMask) {
35 // The 'r', 'g', and/or 'b's must be mapped to 'a' according to our semantics that
36 // alpha-only textures smear alpha across all four channels when read.
37 return true;
38 }
39 }
40 return false;
41}
42
joshualitta5305a12014-10-10 17:47:00 -070043static uint32_t gen_attrib_key(const GrGeometryProcessor& proc) {
joshualitt23e280d2014-09-18 12:26:38 -070044 uint32_t key = 0;
45
joshualitt2dd1ae02014-12-03 06:24:10 -080046 const GrGeometryProcessor::VertexAttribArray& vars = proc.getAttribs();
joshualitt23e280d2014-09-18 12:26:38 -070047 int numAttributes = vars.count();
joshualitt2dd1ae02014-12-03 06:24:10 -080048 SkASSERT(numAttributes <= GrGeometryProcessor::kMaxVertexAttribs);
joshualitt23e280d2014-09-18 12:26:38 -070049 for (int a = 0; a < numAttributes; ++a) {
50 uint32_t value = 1 << a;
51 key |= value;
52 }
53 return key;
54}
55
bsalomon17168df2014-12-09 09:00:49 -080056/**
57 * The key for an individual coord transform is made up of a matrix type, a precision, and a bit
58 * that indicates the source of the input coords.
59 */
60enum {
61 kMatrixTypeKeyBits = 1,
62 kMatrixTypeKeyMask = (1 << kMatrixTypeKeyBits) - 1,
63
64 kPrecisionBits = 2,
65 kPrecisionShift = kMatrixTypeKeyBits,
66
67 kPositionCoords_Flag = (1 << (kPrecisionShift + kPrecisionBits)),
68
69 kTransformKeyBits = kMatrixTypeKeyBits + kPrecisionBits + 1,
70};
71
bsalomonc0bd6482014-12-09 10:04:14 -080072GR_STATIC_ASSERT(kHigh_GrSLPrecision < (1 << kPrecisionBits));
bsalomon17168df2014-12-09 09:00:49 -080073
74/**
75 * We specialize the vertex code for each of these matrix types.
76 */
77enum MatrixType {
78 kNoPersp_MatrixType = 0,
79 kGeneral_MatrixType = 1,
80};
81
82static uint32_t gen_transform_key(const GrPendingFragmentStage& stage, bool useExplicitLocalCoords) {
joshualitt23e280d2014-09-18 12:26:38 -070083 uint32_t totalKey = 0;
bsalomonae59b772014-11-19 08:23:49 -080084 int numTransforms = stage.getProcessor()->numTransforms();
joshualitt23e280d2014-09-18 12:26:38 -070085 for (int t = 0; t < numTransforms; ++t) {
86 uint32_t key = 0;
bsalomonae59b772014-11-19 08:23:49 -080087 if (stage.isPerspectiveCoordTransform(t)) {
joshualitt23e280d2014-09-18 12:26:38 -070088 key |= kGeneral_MatrixType;
89 } else {
90 key |= kNoPersp_MatrixType;
91 }
92
bsalomonae59b772014-11-19 08:23:49 -080093 const GrCoordTransform& coordTransform = stage.getProcessor()->coordTransform(t);
joshualitt23e280d2014-09-18 12:26:38 -070094 if (kLocal_GrCoordSet != coordTransform.sourceCoords() && useExplicitLocalCoords) {
95 key |= kPositionCoords_Flag;
96 }
bsalomon17168df2014-12-09 09:00:49 -080097
bsalomonc0bd6482014-12-09 10:04:14 -080098 GR_STATIC_ASSERT(kGrSLPrecisionCount <= (1 << kPrecisionBits));
bsalomon17168df2014-12-09 09:00:49 -080099 key |= (coordTransform.precision() << kPrecisionShift);
100
joshualitt23e280d2014-09-18 12:26:38 -0700101 key <<= kTransformKeyBits * t;
bsalomon17168df2014-12-09 09:00:49 -0800102
joshualitt23e280d2014-09-18 12:26:38 -0700103 SkASSERT(0 == (totalKey & key)); // keys for each transform ought not to overlap
104 totalKey |= key;
105 }
106 return totalKey;
107}
108
joshualitta5305a12014-10-10 17:47:00 -0700109static uint32_t gen_texture_key(const GrProcessor& proc, const GrGLCaps& caps) {
joshualitt23e280d2014-09-18 12:26:38 -0700110 uint32_t key = 0;
joshualitta5305a12014-10-10 17:47:00 -0700111 int numTextures = proc.numTextures();
joshualitt23e280d2014-09-18 12:26:38 -0700112 for (int t = 0; t < numTextures; ++t) {
joshualitta5305a12014-10-10 17:47:00 -0700113 const GrTextureAccess& access = proc.textureAccess(t);
joshualitt23e280d2014-09-18 12:26:38 -0700114 uint32_t configComponentMask = GrPixelConfigComponentMask(access.getTexture()->config());
115 if (swizzle_requires_alpha_remapping(caps, configComponentMask, access.swizzleMask())) {
116 key |= 1 << t;
117 }
118 }
119 return key;
120}
121
122/**
123 * A function which emits a meta key into the key builder. This is required because shader code may
124 * be dependent on properties of the effect that the effect itself doesn't use
125 * in its key (e.g. the pixel format of textures used). So we create a meta-key for
126 * every effect using this function. It is also responsible for inserting the effect's class ID
joshualittb0a8a372014-09-23 09:50:21 -0700127 * which must be different for every GrProcessor subclass. It can fail if an effect uses too many
joshualitta5305a12014-10-10 17:47:00 -0700128 * textures, transforms, etc, for the space allotted in the meta-key. NOTE, both FPs and GPs share
129 * this function because it is hairy, though FPs do not have attribs, and GPs do not have transforms
joshualitt23e280d2014-09-18 12:26:38 -0700130 */
joshualitta5305a12014-10-10 17:47:00 -0700131static bool get_meta_key(const GrProcessor& proc,
132 const GrGLCaps& caps,
133 uint32_t transformKey,
134 uint32_t attribKey,
egdanielc67870c2014-11-26 08:50:50 -0800135 GrProcessorKeyBuilder* b) {
egdanielc67870c2014-11-26 08:50:50 -0800136 size_t processorKeySize = b->size();
joshualitta5305a12014-10-10 17:47:00 -0700137 uint32_t textureKey = gen_texture_key(proc, caps);
joshualitteb2a6762014-12-04 11:35:33 -0800138 uint32_t classID = proc.classID();
joshualitt89c7a2e2014-10-10 14:11:59 -0700139
140 // Currently we allow 16 bits for each of the above portions of the meta-key. Fail if they
141 // don't fit.
142 static const uint32_t kMetaKeyInvalidMask = ~((uint32_t) SK_MaxU16);
143 if ((textureKey | transformKey | classID) & kMetaKeyInvalidMask) {
joshualitta5305a12014-10-10 17:47:00 -0700144 return false;
joshualitt89c7a2e2014-10-10 14:11:59 -0700145 }
egdanielc67870c2014-11-26 08:50:50 -0800146 if (processorKeySize > SK_MaxU16) {
joshualitt65171342014-10-09 07:25:36 -0700147 return false;
148 }
149
egdanielc67870c2014-11-26 08:50:50 -0800150 uint32_t* key = b->add32n(2);
151 key[0] = (textureKey << 16 | transformKey);
152 key[1] = (classID << 16 | SkToU16(processorKeySize));
joshualitt65171342014-10-09 07:25:36 -0700153 return true;
154}
joshualittb0a8a372014-09-23 09:50:21 -0700155
joshualitt79f8fae2014-10-28 17:59:26 -0700156bool GrGLProgramDescBuilder::Build(const GrOptDrawState& optState,
joshualitt4dd99882014-11-11 08:51:30 -0800157 const GrProgramDesc::DescInfo& descInfo,
158 GrGpu::DrawType drawType,
159 GrGpuGL* gpu,
joshualitt4dd99882014-11-11 08:51:30 -0800160 GrProgramDesc* desc) {
joshualitt79f8fae2014-10-28 17:59:26 -0700161 bool inputColorIsUsed = descInfo.fInputColorIsUsed;
162 bool inputCoverageIsUsed = descInfo.fInputCoverageIsUsed;
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000163
164 // The descriptor is used as a cache key. Thus when a field of the
165 // descriptor will not affect program generation (because of the attribute
166 // bindings in use or other descriptor field settings) it should be set
167 // to a canonical value to avoid duplicate programs with different keys.
168
joshualitt79f8fae2014-10-28 17:59:26 -0700169 bool requiresLocalCoordAttrib = descInfo.fRequiresLocalCoordAttrib;
kkinnunenec56e452014-08-25 22:21:16 -0700170
egdanielc67870c2014-11-26 08:50:50 -0800171 GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t));
172 // Make room for everything up to the effect keys.
bsalomon848faf02014-07-11 10:01:02 -0700173 desc->fKey.reset();
egdanielc67870c2014-11-26 08:50:50 -0800174 desc->fKey.push_back_n(kProcessorKeysOffset);
joshualittbd769d02014-09-04 08:56:46 -0700175
joshualittbd769d02014-09-04 08:56:46 -0700176 // We can only have one effect which touches the vertex shader
egdaniel170f90b2014-09-16 12:54:40 -0700177 if (optState.hasGeometryProcessor()) {
egdanielc67870c2014-11-26 08:50:50 -0800178 const GrGeometryProcessor& gp = *optState.getGeometryProcessor();
179 GrProcessorKeyBuilder b(&desc->fKey);
joshualitteb2a6762014-12-04 11:35:33 -0800180 gp.getGLProcessorKey(optState.getBatchTracker(), gpu->glCaps(), &b);
egdanielc67870c2014-11-26 08:50:50 -0800181 if (!get_meta_key(gp, gpu->glCaps(), 0, gen_attrib_key(gp), &b)) {
182 desc->fKey.reset();
joshualittb0a8a372014-09-23 09:50:21 -0700183 return false;
184 }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000185 }
bsalomon929f29a2014-07-17 07:55:11 -0700186
joshualitta5305a12014-10-10 17:47:00 -0700187 for (int s = 0; s < optState.numFragmentStages(); ++s) {
egdanielc67870c2014-11-26 08:50:50 -0800188 const GrPendingFragmentStage& fps = optState.getFragmentStage(s);
joshualitt87f48d92014-12-04 10:41:40 -0800189 const GrFragmentProcessor& fp = *fps.getProcessor();
egdanielc67870c2014-11-26 08:50:50 -0800190 GrProcessorKeyBuilder b(&desc->fKey);
joshualitteb2a6762014-12-04 11:35:33 -0800191 fp.getGLProcessorKey(gpu->glCaps(), &b);
egdanielc2304142014-12-11 13:15:13 -0800192 if (!get_meta_key(fp, gpu->glCaps(),
193 gen_transform_key(fps, requiresLocalCoordAttrib), 0, &b)) {
egdanielc67870c2014-11-26 08:50:50 -0800194 desc->fKey.reset();
joshualittb0a8a372014-09-23 09:50:21 -0700195 return false;
196 }
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000197 }
egdaniel170f90b2014-09-16 12:54:40 -0700198
egdanielc2304142014-12-11 13:15:13 -0800199 const GrXferProcessor& xp = *optState.getXferProcessor();
200 GrProcessorKeyBuilder b(&desc->fKey);
201 xp.getGLProcessorKey(gpu->glCaps(), &b);
202 if (!get_meta_key(xp, gpu->glCaps(), 0, 0, &b)) {
203 desc->fKey.reset();
204 return false;
205 }
206
joshualitt65171342014-10-09 07:25:36 -0700207 // --------DO NOT MOVE HEADER ABOVE THIS LINE--------------------------------------------------
bsalomon848faf02014-07-11 10:01:02 -0700208 // Because header is a pointer into the dynamic array, we can't push any new data into the key
209 // below here.
joshualitt79f8fae2014-10-28 17:59:26 -0700210 GLKeyHeader* header = desc->atOffset<GLKeyHeader, kHeaderOffset>();
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000211
joshualitt65171342014-10-09 07:25:36 -0700212 // make sure any padding in the header is zeroed.
213 memset(header, 0, kHeaderSize);
214
215 header->fHasGeometryProcessor = optState.hasGeometryProcessor();
egdanielae444962014-09-22 12:29:52 -0700216
joshualitt0e602822014-10-28 10:27:44 -0700217 bool isPathRendering = GrGpu::IsPathRenderingDrawType(drawType);
218 if (gpu->caps()->pathRenderingSupport() && isPathRendering) {
219 header->fUseNvpr = true;
bsalomoncd523eb2014-09-23 08:19:00 -0700220 SkASSERT(!optState.hasGeometryProcessor());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000221 } else {
joshualitt0e602822014-10-28 10:27:44 -0700222 header->fUseNvpr = false;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000223 }
224
joshualitt2dd1ae02014-12-03 06:24:10 -0800225 bool hasUniformColor = inputColorIsUsed && (isPathRendering || !descInfo.fHasVertexColor);
bsalomoncd523eb2014-09-23 08:19:00 -0700226
227 if (!inputColorIsUsed) {
joshualitt79f8fae2014-10-28 17:59:26 -0700228 header->fColorInput = GrProgramDesc::kAllOnes_ColorInput;
joshualitt0e602822014-10-28 10:27:44 -0700229 } else if (hasUniformColor) {
joshualitt79f8fae2014-10-28 17:59:26 -0700230 header->fColorInput = GrProgramDesc::kUniform_ColorInput;
bsalomoncd523eb2014-09-23 08:19:00 -0700231 } else {
joshualitt79f8fae2014-10-28 17:59:26 -0700232 header->fColorInput = GrProgramDesc::kAttribute_ColorInput;
joshualitt0e602822014-10-28 10:27:44 -0700233 SkASSERT(!header->fUseNvpr);
bsalomoncd523eb2014-09-23 08:19:00 -0700234 }
235
joshualitt2dd1ae02014-12-03 06:24:10 -0800236 bool hasVertexCoverage = !isPathRendering && descInfo.fHasVertexCoverage;
237
238 bool covIsSolidWhite = !hasVertexCoverage && 0xffffffff == optState.getCoverageColor();
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000239
egdaniel170f90b2014-09-16 12:54:40 -0700240 if (covIsSolidWhite || !inputCoverageIsUsed) {
joshualitt79f8fae2014-10-28 17:59:26 -0700241 header->fCoverageInput = GrProgramDesc::kAllOnes_ColorInput;
joshualitt2dd1ae02014-12-03 06:24:10 -0800242 } else if (!hasVertexCoverage) {
joshualitt79f8fae2014-10-28 17:59:26 -0700243 header->fCoverageInput = GrProgramDesc::kUniform_ColorInput;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000244 } else {
joshualitt79f8fae2014-10-28 17:59:26 -0700245 header->fCoverageInput = GrProgramDesc::kAttribute_ColorInput;
joshualitt0e602822014-10-28 10:27:44 -0700246 SkASSERT(!header->fUseNvpr);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000247 }
248
joshualitt79f8fae2014-10-28 17:59:26 -0700249 if (descInfo.fReadsDst) {
joshualitt9176e2c2014-11-20 07:28:52 -0800250 const GrDeviceCoordTexture* dstCopy = optState.getDstCopy();
bsalomon49f085d2014-09-05 13:34:00 -0700251 SkASSERT(dstCopy || gpu->caps()->dstReadInShaderSupport());
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000252 const GrTexture* dstCopyTexture = NULL;
bsalomon49f085d2014-09-05 13:34:00 -0700253 if (dstCopy) {
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000254 dstCopyTexture = dstCopy->texture();
255 }
joshualitt30ba4362014-08-21 20:18:45 -0700256 header->fDstReadKey = GrGLFragmentShaderBuilder::KeyForDstRead(dstCopyTexture,
joshualitt47bb3822014-10-07 16:43:25 -0700257 gpu->glCaps());
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000258 SkASSERT(0 != header->fDstReadKey);
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000259 } else {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000260 header->fDstReadKey = 0;
bsalomon@google.comb5158812013-05-13 18:50:25 +0000261 }
262
joshualitt79f8fae2014-10-28 17:59:26 -0700263 if (descInfo.fReadsFragPosition) {
joshualitt47bb3822014-10-07 16:43:25 -0700264 header->fFragPosKey =
265 GrGLFragmentShaderBuilder::KeyForFragmentPosition(optState.getRenderTarget(),
266 gpu->glCaps());
bsalomon@google.comb5158812013-05-13 18:50:25 +0000267 } else {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000268 header->fFragPosKey = 0;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000269 }
270
joshualitta5305a12014-10-10 17:47:00 -0700271 header->fColorEffectCnt = optState.numColorStages();
272 header->fCoverageEffectCnt = optState.numCoverageStages();
bsalomon848faf02014-07-11 10:01:02 -0700273 desc->finalize();
274 return true;
275}