| bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 1 | /* | 
| egdaniel | 0d9990f | 2016-07-29 07:36:52 -0700 | [diff] [blame] | 2 | * Copyright 2016 Google Inc. | 
| bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 3 | * | 
|  | 4 | * Use of this source code is governed by a BSD-style license that can be | 
|  | 5 | * found in the LICENSE file. | 
|  | 6 | */ | 
| Hal Canary | c640d0d | 2018-06-13 09:59:02 -0400 | [diff] [blame] | 7 |  | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 8 | #include "GrProgramDesc.h" | 
| Hal Canary | c640d0d | 2018-06-13 09:59:02 -0400 | [diff] [blame] | 9 |  | 
| egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 10 | #include "GrPipeline.h" | 
| Brian Salomon | e7d3048 | 2017-03-29 12:09:15 -0400 | [diff] [blame] | 11 | #include "GrPrimitiveProcessor.h" | 
|  | 12 | #include "GrProcessor.h" | 
| cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 13 | #include "GrRenderTargetPriv.h" | 
| Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 14 | #include "GrShaderCaps.h" | 
| Brian Salomon | 739c5bf | 2016-11-07 09:53:44 -0500 | [diff] [blame] | 15 | #include "GrTexturePriv.h" | 
| bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 16 | #include "SkChecksum.h" | 
| Hal Canary | c640d0d | 2018-06-13 09:59:02 -0400 | [diff] [blame] | 17 | #include "SkTo.h" | 
| egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 18 | #include "glsl/GrGLSLFragmentProcessor.h" | 
| egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 19 | #include "glsl/GrGLSLFragmentShaderBuilder.h" | 
| bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 20 |  | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 21 | enum { | 
|  | 22 | kSamplerOrImageTypeKeyBits = 4 | 
|  | 23 | }; | 
| Brian Salomon | be34882 | 2016-11-22 15:56:30 -0500 | [diff] [blame] | 24 |  | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 25 | static inline uint16_t texture_type_key(GrTextureType type) { | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 26 | int value = UINT16_MAX; | 
|  | 27 | switch (type) { | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 28 | case GrTextureType::k2D: | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 29 | value = 0; | 
|  | 30 | break; | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 31 | case GrTextureType::kExternal: | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 32 | value = 1; | 
|  | 33 | break; | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 34 | case GrTextureType::kRectangle: | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 35 | value = 2; | 
|  | 36 | break; | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 37 | } | 
|  | 38 | SkASSERT((value & ((1 << kSamplerOrImageTypeKeyBits) - 1)) == value); | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 39 | return SkToU16(value); | 
| Brian Salomon | be34882 | 2016-11-22 15:56:30 -0500 | [diff] [blame] | 40 | } | 
|  | 41 |  | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 42 | static uint16_t sampler_key(GrTextureType textureType, GrPixelConfig config, | 
| Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 43 | const GrShaderCaps& caps) { | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 44 | int samplerTypeKey = texture_type_key(textureType); | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 45 |  | 
|  | 46 | GR_STATIC_ASSERT(1 == sizeof(caps.configTextureSwizzle(config).asKey())); | 
|  | 47 | return SkToU16(samplerTypeKey | | 
|  | 48 | caps.configTextureSwizzle(config).asKey() << kSamplerOrImageTypeKeyBits | | 
| Chris Dalton | 47c8ed3 | 2017-11-15 18:27:09 -0700 | [diff] [blame] | 49 | (GrSLSamplerPrecision(config) << (8 + kSamplerOrImageTypeKeyBits))); | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 50 | } | 
|  | 51 |  | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 52 | static void add_sampler_keys(GrProcessorKeyBuilder* b, const GrFragmentProcessor& fp, | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 53 | GrGpu* gpu, const GrShaderCaps& caps) { | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 54 | int numTextureSamplers = fp.numTextureSamplers(); | 
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 55 | // Need two bytes per key. | 
| Brian Salomon | 662ea4b | 2018-07-12 14:53:49 -0400 | [diff] [blame] | 56 | int word32Count = (numTextureSamplers + 1) / 2; | 
| bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 57 | if (0 == word32Count) { | 
|  | 58 | return; | 
| joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 59 | } | 
| Mike Klein | e72e773 | 2018-06-14 14:41:22 -0400 | [diff] [blame] | 60 | uint16_t* k16 = reinterpret_cast<uint16_t*>(b->add32n(word32Count)); | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 61 | for (int i = 0; i < numTextureSamplers; ++i) { | 
|  | 62 | const GrFragmentProcessor::TextureSampler& sampler = fp.textureSampler(i); | 
| Robert Phillips | 9bee2e5 | 2017-05-29 12:37:20 -0400 | [diff] [blame] | 63 | const GrTexture* tex = sampler.peekTexture(); | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 64 | k16[i] = sampler_key(tex->texturePriv().textureType(), tex->config(), caps); | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 65 | uint32_t extraSamplerKey = gpu->getExtraSamplerKeyForProgram( | 
|  | 66 | sampler.samplerState(), sampler.proxy()->backendFormat()); | 
|  | 67 | if (extraSamplerKey) { | 
|  | 68 | SkASSERT(sampler.proxy()->textureType() == GrTextureType::kExternal); | 
|  | 69 | // We first mark the normal sampler key with last bit to flag that it has an extra | 
|  | 70 | // sampler key. We then add all the extraSamplerKeys to the end of the normal ones. | 
|  | 71 | SkASSERT((k16[i] & (1 << 15)) == 0); | 
|  | 72 | k16[i] = k16[i] | (1 << 15); | 
|  | 73 | b->add32(extraSamplerKey); | 
|  | 74 | } | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 75 | } | 
|  | 76 | // zero the last 16 bits if the number of uniforms for samplers is odd. | 
|  | 77 | if (numTextureSamplers & 0x1) { | 
|  | 78 | k16[numTextureSamplers] = 0; | 
|  | 79 | } | 
|  | 80 | } | 
| Robert Phillips | 9bee2e5 | 2017-05-29 12:37:20 -0400 | [diff] [blame] | 81 |  | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 82 | static void add_sampler_keys(GrProcessorKeyBuilder* b, const GrPrimitiveProcessor& pp, | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 83 | const GrShaderCaps& caps) { | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 84 | int numTextureSamplers = pp.numTextureSamplers(); | 
|  | 85 | // Need two bytes per key. | 
|  | 86 | int word32Count = (numTextureSamplers + 1) / 2; | 
|  | 87 | if (0 == word32Count) { | 
|  | 88 | return; | 
|  | 89 | } | 
|  | 90 | uint16_t* k16 = reinterpret_cast<uint16_t*>(b->add32n(word32Count)); | 
|  | 91 | for (int i = 0; i < numTextureSamplers; ++i) { | 
|  | 92 | const GrPrimitiveProcessor::TextureSampler& sampler = pp.textureSampler(i); | 
| Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 93 | k16[i] = sampler_key(sampler.textureType(), sampler.config(), caps); | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 94 | uint32_t extraSamplerKey = sampler.extraSamplerKey(); | 
|  | 95 | if (extraSamplerKey) { | 
|  | 96 | SkASSERT(sampler.textureType() == GrTextureType::kExternal); | 
|  | 97 | // We first mark the normal sampler key with last bit to flag that it has an extra | 
|  | 98 | // sampler key. We then add all the extraSamplerKeys to the end of the normal ones. | 
|  | 99 | SkASSERT((k16[i] & (1 << 15)) == 0); | 
|  | 100 | k16[i] = k16[i] | (1 << 15); | 
|  | 101 | b->add32(extraSamplerKey); | 
|  | 102 | } | 
| bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 103 | } | 
| Brian Salomon | 662ea4b | 2018-07-12 14:53:49 -0400 | [diff] [blame] | 104 | // zero the last 16 bits if the number of uniforms for samplers is odd. | 
|  | 105 | if (numTextureSamplers & 0x1) { | 
|  | 106 | k16[numTextureSamplers] = 0; | 
| bsalomon | 65859ec | 2016-01-11 09:17:52 -0800 | [diff] [blame] | 107 | } | 
| joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 108 | } | 
|  | 109 |  | 
|  | 110 | /** | 
|  | 111 | * A function which emits a meta key into the key builder.  This is required because shader code may | 
|  | 112 | * be dependent on properties of the effect that the effect itself doesn't use | 
|  | 113 | * in its key (e.g. the pixel format of textures used). So we create a meta-key for | 
|  | 114 | * 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] | 115 | * which must be different for every GrProcessor subclass. It can fail if an effect uses too many | 
| bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 116 | * transforms, etc, for the space allotted in the meta-key.  NOTE, both FPs and GPs share this | 
|  | 117 | * 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] | 118 | */ | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 119 | static bool gen_meta_key(const GrFragmentProcessor& fp, | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 120 | GrGpu* gpu, | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 121 | const GrShaderCaps& shaderCaps, | 
| joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 122 | uint32_t transformKey, | 
| egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 123 | GrProcessorKeyBuilder* b) { | 
| egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 124 | size_t processorKeySize = b->size(); | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 125 | uint32_t classID = fp.classID(); | 
| joshualitt | 89c7a2e | 2014-10-10 14:11:59 -0700 | [diff] [blame] | 126 |  | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 127 | // Currently we allow 16 bits for the class id and the overall processor key size. | 
| Ben Wagner | b089765 | 2018-06-15 15:37:57 +0000 | [diff] [blame] | 128 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)UINT16_MAX); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 129 | if ((processorKeySize | classID) & kMetaKeyInvalidMask) { | 
| joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 130 | return false; | 
|  | 131 | } | 
|  | 132 |  | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 133 | add_sampler_keys(b, fp, gpu, shaderCaps); | 
| Brian Salomon | e782f84 | 2018-07-31 13:53:11 -0400 | [diff] [blame] | 134 |  | 
|  | 135 | uint32_t* key = b->add32n(2); | 
|  | 136 | key[0] = (classID << 16) | SkToU32(processorKeySize); | 
|  | 137 | key[1] = transformKey; | 
|  | 138 | return true; | 
|  | 139 | } | 
|  | 140 |  | 
|  | 141 | static bool gen_meta_key(const GrPrimitiveProcessor& pp, | 
|  | 142 | const GrShaderCaps& shaderCaps, | 
|  | 143 | uint32_t transformKey, | 
|  | 144 | GrProcessorKeyBuilder* b) { | 
|  | 145 | size_t processorKeySize = b->size(); | 
|  | 146 | uint32_t classID = pp.classID(); | 
|  | 147 |  | 
|  | 148 | // Currently we allow 16 bits for the class id and the overall processor key size. | 
|  | 149 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)UINT16_MAX); | 
|  | 150 | if ((processorKeySize | classID) & kMetaKeyInvalidMask) { | 
|  | 151 | return false; | 
|  | 152 | } | 
|  | 153 |  | 
|  | 154 | add_sampler_keys(b, pp, shaderCaps); | 
| bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 155 |  | 
|  | 156 | uint32_t* key = b->add32n(2); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 157 | key[0] = (classID << 16) | SkToU32(processorKeySize); | 
| bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 158 | key[1] = transformKey; | 
| joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 159 | return true; | 
|  | 160 | } | 
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 161 |  | 
| Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 162 | static bool gen_meta_key(const GrXferProcessor& xp, | 
|  | 163 | const GrShaderCaps& shaderCaps, | 
|  | 164 | GrProcessorKeyBuilder* b) { | 
|  | 165 | size_t processorKeySize = b->size(); | 
|  | 166 | uint32_t classID = xp.classID(); | 
|  | 167 |  | 
|  | 168 | // Currently we allow 16 bits for the class id and the overall processor key size. | 
| Ben Wagner | b089765 | 2018-06-15 15:37:57 +0000 | [diff] [blame] | 169 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)UINT16_MAX); | 
| Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 170 | if ((processorKeySize | classID) & kMetaKeyInvalidMask) { | 
|  | 171 | return false; | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | b->add32((classID << 16) | SkToU32(processorKeySize)); | 
|  | 175 | return true; | 
|  | 176 | } | 
|  | 177 |  | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 178 | static bool gen_frag_proc_and_meta_keys(const GrPrimitiveProcessor& primProc, | 
| wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 179 | const GrFragmentProcessor& fp, | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 180 | GrGpu* gpu, | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 181 | const GrShaderCaps& shaderCaps, | 
| wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 182 | GrProcessorKeyBuilder* b) { | 
|  | 183 | for (int i = 0; i < fp.numChildProcessors(); ++i) { | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 184 | if (!gen_frag_proc_and_meta_keys(primProc, fp.childProcessor(i), gpu, shaderCaps, b)) { | 
| wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 185 | return false; | 
|  | 186 | } | 
|  | 187 | } | 
|  | 188 |  | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 189 | fp.getGLSLProcessorKey(shaderCaps, b); | 
| wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 190 |  | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 191 | return gen_meta_key(fp, gpu, shaderCaps, primProc.getTransformKey(fp.coordTransforms(), | 
|  | 192 | fp.numCoordTransforms()), b); | 
| wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 193 | } | 
|  | 194 |  | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 195 | bool GrProgramDesc::Build(GrProgramDesc* desc, | 
|  | 196 | const GrPrimitiveProcessor& primProc, | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 197 | bool hasPointSize, | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 198 | const GrPipeline& pipeline, | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 199 | GrGpu* gpu) { | 
| bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 200 | // The descriptor is used as a cache key. Thus when a field of the | 
|  | 201 | // descriptor will not affect program generation (because of the attribute | 
|  | 202 | // bindings in use or other descriptor field settings) it should be set | 
|  | 203 | // to a canonical value to avoid duplicate programs with different keys. | 
|  | 204 |  | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 205 | const GrShaderCaps& shaderCaps = *gpu->caps()->shaderCaps(); | 
|  | 206 |  | 
| egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 207 | GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t)); | 
|  | 208 | // Make room for everything up to the effect keys. | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 209 | desc->key().reset(); | 
|  | 210 | desc->key().push_back_n(kProcessorKeysOffset); | 
| joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 211 |  | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 212 | GrProcessorKeyBuilder b(&desc->key()); | 
| joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 213 |  | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 214 | primProc.getGLSLProcessorKey(shaderCaps, &b); | 
| Brian Osman | d3e7130 | 2018-12-06 11:17:35 -0500 | [diff] [blame] | 215 | primProc.getAttributeKey(&b); | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 216 | if (!gen_meta_key(primProc, shaderCaps, 0, &b)) { | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 217 | desc->key().reset(); | 
| joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 218 | return false; | 
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 219 | } | 
| bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 220 |  | 
| bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 221 | for (int i = 0; i < pipeline.numFragmentProcessors(); ++i) { | 
|  | 222 | const GrFragmentProcessor& fp = pipeline.getFragmentProcessor(i); | 
| Greg Daniel | 7a82edf | 2018-12-04 10:54:34 -0500 | [diff] [blame] | 223 | if (!gen_frag_proc_and_meta_keys(primProc, fp, gpu, shaderCaps, &b)) { | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 224 | desc->key().reset(); | 
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 225 | return false; | 
|  | 226 | } | 
| bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 227 | } | 
| egdaniel | 170f90b | 2014-09-16 12:54:40 -0700 | [diff] [blame] | 228 |  | 
| bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 229 | const GrXferProcessor& xp = pipeline.getXferProcessor(); | 
| Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 230 | const GrSurfaceOrigin* originIfDstTexture = nullptr; | 
|  | 231 | GrSurfaceOrigin origin; | 
| Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 232 | if (pipeline.dstTextureProxy()) { | 
|  | 233 | origin = pipeline.dstTextureProxy()->origin(); | 
| Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 234 | originIfDstTexture = &origin; | 
|  | 235 | } | 
|  | 236 | xp.getGLSLProcessorKey(shaderCaps, &b, originIfDstTexture); | 
| Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 237 | if (!gen_meta_key(xp, shaderCaps, &b)) { | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 238 | desc->key().reset(); | 
| egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 239 | return false; | 
|  | 240 | } | 
|  | 241 |  | 
| joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 242 | // --------DO NOT MOVE HEADER ABOVE THIS LINE-------------------------------------------------- | 
| bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 243 | // Because header is a pointer into the dynamic array, we can't push any new data into the key | 
|  | 244 | // below here. | 
| egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 245 | KeyHeader* header = desc->atOffset<KeyHeader, kHeaderOffset>(); | 
| bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 246 |  | 
| joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 247 | // make sure any padding in the header is zeroed. | 
|  | 248 | memset(header, 0, kHeaderSize); | 
| Chris Dalton | 535ba8d | 2018-02-20 09:51:59 -0700 | [diff] [blame] | 249 | header->fOutputSwizzle = shaderCaps.configOutputSwizzle(pipeline.proxy()->config()).asKey(); | 
| bsalomon | d79c549 | 2015-04-27 10:07:04 -0700 | [diff] [blame] | 250 | header->fSnapVerticesToPixelCenters = pipeline.snapVerticesToPixelCenters(); | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 251 | header->fColorFragmentProcessorCnt = pipeline.numColorFragmentProcessors(); | 
|  | 252 | header->fCoverageFragmentProcessorCnt = pipeline.numCoverageFragmentProcessors(); | 
|  | 253 | // Fail if the client requested more processors than the key can fit. | 
|  | 254 | if (header->fColorFragmentProcessorCnt != pipeline.numColorFragmentProcessors() || | 
|  | 255 | header->fCoverageFragmentProcessorCnt != pipeline.numCoverageFragmentProcessors()) { | 
|  | 256 | return false; | 
|  | 257 | } | 
|  | 258 | header->fHasPointSize = hasPointSize ? 1 : 0; | 
| bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 259 | return true; | 
|  | 260 | } |