bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 1 | /* |
| 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.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 7 | #include "GrGLProgramDesc.h" |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 8 | |
| 9 | #include "GrGLProcessor.h" |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 10 | #include "GrProcessor.h" |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 11 | #include "GrGpuGL.h" |
egdaniel | 170f90b | 2014-09-16 12:54:40 -0700 | [diff] [blame] | 12 | #include "GrOptDrawState.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 13 | #include "SkChecksum.h" |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 14 | #include "gl/builders/GrGLFragmentShaderBuilder.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 15 | |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 16 | /** |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 17 | * 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 | */ |
| 21 | static 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 | |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 43 | /** |
| 44 | * The key for an individual coord transform is made up of a matrix type, a precision, and a bit |
| 45 | * that indicates the source of the input coords. |
| 46 | */ |
| 47 | enum { |
| 48 | kMatrixTypeKeyBits = 1, |
| 49 | kMatrixTypeKeyMask = (1 << kMatrixTypeKeyBits) - 1, |
| 50 | |
| 51 | kPrecisionBits = 2, |
| 52 | kPrecisionShift = kMatrixTypeKeyBits, |
| 53 | |
| 54 | kPositionCoords_Flag = (1 << (kPrecisionShift + kPrecisionBits)), |
joshualitt | 16b2789 | 2014-12-18 07:47:16 -0800 | [diff] [blame] | 55 | kDeviceCoords_Flag = kPositionCoords_Flag + kPositionCoords_Flag, |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 56 | |
joshualitt | 16b2789 | 2014-12-18 07:47:16 -0800 | [diff] [blame] | 57 | kTransformKeyBits = kMatrixTypeKeyBits + kPrecisionBits + 2, |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 58 | }; |
| 59 | |
bsalomon | c0bd648 | 2014-12-09 10:04:14 -0800 | [diff] [blame] | 60 | GR_STATIC_ASSERT(kHigh_GrSLPrecision < (1 << kPrecisionBits)); |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 61 | |
| 62 | /** |
| 63 | * We specialize the vertex code for each of these matrix types. |
| 64 | */ |
| 65 | enum MatrixType { |
| 66 | kNoPersp_MatrixType = 0, |
| 67 | kGeneral_MatrixType = 1, |
| 68 | }; |
| 69 | |
| 70 | static uint32_t gen_transform_key(const GrPendingFragmentStage& stage, bool useExplicitLocalCoords) { |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 71 | uint32_t totalKey = 0; |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 72 | int numTransforms = stage.getProcessor()->numTransforms(); |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 73 | for (int t = 0; t < numTransforms; ++t) { |
| 74 | uint32_t key = 0; |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 75 | if (stage.isPerspectiveCoordTransform(t)) { |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 76 | key |= kGeneral_MatrixType; |
| 77 | } else { |
| 78 | key |= kNoPersp_MatrixType; |
| 79 | } |
| 80 | |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 81 | const GrCoordTransform& coordTransform = stage.getProcessor()->coordTransform(t); |
joshualitt | 16b2789 | 2014-12-18 07:47:16 -0800 | [diff] [blame] | 82 | if (kLocal_GrCoordSet == coordTransform.sourceCoords() && !useExplicitLocalCoords) { |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 83 | key |= kPositionCoords_Flag; |
joshualitt | 16b2789 | 2014-12-18 07:47:16 -0800 | [diff] [blame] | 84 | } else if (kDevice_GrCoordSet == coordTransform.sourceCoords()) { |
| 85 | key |= kDeviceCoords_Flag; |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 86 | } |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 87 | |
bsalomon | c0bd648 | 2014-12-09 10:04:14 -0800 | [diff] [blame] | 88 | GR_STATIC_ASSERT(kGrSLPrecisionCount <= (1 << kPrecisionBits)); |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 89 | key |= (coordTransform.precision() << kPrecisionShift); |
| 90 | |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 91 | key <<= kTransformKeyBits * t; |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 92 | |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 93 | SkASSERT(0 == (totalKey & key)); // keys for each transform ought not to overlap |
| 94 | totalKey |= key; |
| 95 | } |
| 96 | return totalKey; |
| 97 | } |
| 98 | |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 99 | static uint32_t gen_texture_key(const GrProcessor& proc, const GrGLCaps& caps) { |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 100 | uint32_t key = 0; |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 101 | int numTextures = proc.numTextures(); |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 102 | for (int t = 0; t < numTextures; ++t) { |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 103 | const GrTextureAccess& access = proc.textureAccess(t); |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 104 | uint32_t configComponentMask = GrPixelConfigComponentMask(access.getTexture()->config()); |
| 105 | if (swizzle_requires_alpha_remapping(caps, configComponentMask, access.swizzleMask())) { |
| 106 | key |= 1 << t; |
| 107 | } |
| 108 | } |
| 109 | return key; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * A function which emits a meta key into the key builder. This is required because shader code may |
| 114 | * be dependent on properties of the effect that the effect itself doesn't use |
| 115 | * in its key (e.g. the pixel format of textures used). So we create a meta-key for |
| 116 | * every effect using this function. It is also responsible for inserting the effect's class ID |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 117 | * which must be different for every GrProcessor subclass. It can fail if an effect uses too many |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 118 | * textures, transforms, etc, for the space allotted in the meta-key. NOTE, both FPs and GPs share |
| 119 | * this function because it is hairy, though FPs do not have attribs, and GPs do not have transforms |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 120 | */ |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 121 | static bool get_meta_key(const GrProcessor& proc, |
| 122 | const GrGLCaps& caps, |
| 123 | uint32_t transformKey, |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 124 | GrProcessorKeyBuilder* b) { |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 125 | size_t processorKeySize = b->size(); |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 126 | uint32_t textureKey = gen_texture_key(proc, caps); |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 127 | uint32_t classID = proc.classID(); |
joshualitt | 89c7a2e | 2014-10-10 14:11:59 -0700 | [diff] [blame] | 128 | |
| 129 | // Currently we allow 16 bits for each of the above portions of the meta-key. Fail if they |
| 130 | // don't fit. |
| 131 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t) SK_MaxU16); |
| 132 | if ((textureKey | transformKey | classID) & kMetaKeyInvalidMask) { |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 133 | return false; |
joshualitt | 89c7a2e | 2014-10-10 14:11:59 -0700 | [diff] [blame] | 134 | } |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 135 | if (processorKeySize > SK_MaxU16) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 136 | return false; |
| 137 | } |
| 138 | |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 139 | uint32_t* key = b->add32n(2); |
| 140 | key[0] = (textureKey << 16 | transformKey); |
| 141 | key[1] = (classID << 16 | SkToU16(processorKeySize)); |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 142 | return true; |
| 143 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 144 | |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 145 | bool GrGLProgramDescBuilder::Build(const GrOptDrawState& optState, |
joshualitt | 4dd9988 | 2014-11-11 08:51:30 -0800 | [diff] [blame] | 146 | const GrProgramDesc::DescInfo& descInfo, |
| 147 | GrGpu::DrawType drawType, |
bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 148 | GrGLGpu* gpu, |
joshualitt | 4dd9988 | 2014-11-11 08:51:30 -0800 | [diff] [blame] | 149 | GrProgramDesc* desc) { |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 150 | // The descriptor is used as a cache key. Thus when a field of the |
| 151 | // descriptor will not affect program generation (because of the attribute |
| 152 | // bindings in use or other descriptor field settings) it should be set |
| 153 | // to a canonical value to avoid duplicate programs with different keys. |
| 154 | |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 155 | bool requiresLocalCoordAttrib = descInfo.fRequiresLocalCoordAttrib; |
kkinnunen | ec56e45 | 2014-08-25 22:21:16 -0700 | [diff] [blame] | 156 | |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 157 | GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t)); |
| 158 | // Make room for everything up to the effect keys. |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 159 | desc->fKey.reset(); |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 160 | desc->fKey.push_back_n(kProcessorKeysOffset); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 161 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 162 | GrProcessorKeyBuilder b(&desc->fKey); |
| 163 | |
| 164 | const GrPrimitiveProcessor& primProc = *optState.getPrimitiveProcessor(); |
| 165 | primProc.getGLProcessorKey(optState.getBatchTracker(), gpu->glCaps(), &b); |
| 166 | if (!get_meta_key(primProc, gpu->glCaps(), 0, &b)) { |
| 167 | desc->fKey.reset(); |
| 168 | return false; |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 169 | } |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 170 | |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 171 | for (int s = 0; s < optState.numFragmentStages(); ++s) { |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 172 | const GrPendingFragmentStage& fps = optState.getFragmentStage(s); |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 173 | const GrFragmentProcessor& fp = *fps.getProcessor(); |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 174 | fp.getGLProcessorKey(gpu->glCaps(), &b); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 175 | if (!get_meta_key(fp, gpu->glCaps(), |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 176 | gen_transform_key(fps, requiresLocalCoordAttrib), &b)) { |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 177 | desc->fKey.reset(); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 178 | return false; |
| 179 | } |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 180 | } |
egdaniel | 170f90b | 2014-09-16 12:54:40 -0700 | [diff] [blame] | 181 | |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 182 | const GrXferProcessor& xp = *optState.getXferProcessor(); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 183 | xp.getGLProcessorKey(gpu->glCaps(), &b); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 184 | if (!get_meta_key(xp, gpu->glCaps(), 0, &b)) { |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 185 | desc->fKey.reset(); |
| 186 | return false; |
| 187 | } |
| 188 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 189 | // --------DO NOT MOVE HEADER ABOVE THIS LINE-------------------------------------------------- |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 190 | // Because header is a pointer into the dynamic array, we can't push any new data into the key |
| 191 | // below here. |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 192 | GLKeyHeader* header = desc->atOffset<GLKeyHeader, kHeaderOffset>(); |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 193 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 194 | // make sure any padding in the header is zeroed. |
| 195 | memset(header, 0, kHeaderSize); |
| 196 | |
joshualitt | 0e60282 | 2014-10-28 10:27:44 -0700 | [diff] [blame] | 197 | bool isPathRendering = GrGpu::IsPathRenderingDrawType(drawType); |
| 198 | if (gpu->caps()->pathRenderingSupport() && isPathRendering) { |
| 199 | header->fUseNvpr = true; |
bsalomon | cd523eb | 2014-09-23 08:19:00 -0700 | [diff] [blame] | 200 | SkASSERT(!optState.hasGeometryProcessor()); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 201 | } else { |
joshualitt | 0e60282 | 2014-10-28 10:27:44 -0700 | [diff] [blame] | 202 | header->fUseNvpr = false; |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 203 | } |
| 204 | |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 205 | if (descInfo.fReadsDst) { |
joshualitt | 9176e2c | 2014-11-20 07:28:52 -0800 | [diff] [blame] | 206 | const GrDeviceCoordTexture* dstCopy = optState.getDstCopy(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 207 | SkASSERT(dstCopy || gpu->caps()->dstReadInShaderSupport()); |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 208 | const GrTexture* dstCopyTexture = NULL; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 209 | if (dstCopy) { |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 210 | dstCopyTexture = dstCopy->texture(); |
| 211 | } |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 212 | header->fDstReadKey = GrGLFragmentShaderBuilder::KeyForDstRead(dstCopyTexture, |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 213 | gpu->glCaps()); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 214 | SkASSERT(0 != header->fDstReadKey); |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 215 | } else { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 216 | header->fDstReadKey = 0; |
bsalomon@google.com | b515881 | 2013-05-13 18:50:25 +0000 | [diff] [blame] | 217 | } |
| 218 | |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 219 | if (descInfo.fReadsFragPosition) { |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 220 | header->fFragPosKey = |
| 221 | GrGLFragmentShaderBuilder::KeyForFragmentPosition(optState.getRenderTarget(), |
| 222 | gpu->glCaps()); |
bsalomon@google.com | b515881 | 2013-05-13 18:50:25 +0000 | [diff] [blame] | 223 | } else { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 224 | header->fFragPosKey = 0; |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 225 | } |
| 226 | |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 227 | header->fColorEffectCnt = optState.numColorStages(); |
| 228 | header->fCoverageEffectCnt = optState.numCoverageStages(); |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 229 | desc->finalize(); |
| 230 | return true; |
| 231 | } |