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 | */ |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 7 | #include "GrProgramDesc.h" |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 8 | #include "GrPipeline.h" |
Brian Salomon | e7d3048 | 2017-03-29 12:09:15 -0400 | [diff] [blame] | 9 | #include "GrPrimitiveProcessor.h" |
| 10 | #include "GrProcessor.h" |
cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 11 | #include "GrRenderTargetPriv.h" |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 12 | #include "GrShaderCaps.h" |
Brian Salomon | 739c5bf | 2016-11-07 09:53:44 -0500 | [diff] [blame] | 13 | #include "GrTexturePriv.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 14 | #include "SkChecksum.h" |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 15 | #include "glsl/GrGLSLFragmentProcessor.h" |
egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 16 | #include "glsl/GrGLSLFragmentShaderBuilder.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 17 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 18 | enum { |
| 19 | kSamplerOrImageTypeKeyBits = 4 |
| 20 | }; |
Brian Salomon | be34882 | 2016-11-22 15:56:30 -0500 | [diff] [blame] | 21 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 22 | static inline uint16_t image_storage_or_sampler_uniform_type_key(GrSLType type ) { |
| 23 | int value = UINT16_MAX; |
| 24 | switch (type) { |
| 25 | case kTexture2DSampler_GrSLType: |
| 26 | value = 0; |
| 27 | break; |
| 28 | case kITexture2DSampler_GrSLType: |
| 29 | value = 1; |
| 30 | break; |
| 31 | case kTextureExternalSampler_GrSLType: |
| 32 | value = 2; |
| 33 | break; |
| 34 | case kTexture2DRectSampler_GrSLType: |
| 35 | value = 3; |
| 36 | break; |
| 37 | case kBufferSampler_GrSLType: |
| 38 | value = 4; |
| 39 | break; |
| 40 | case kImageStorage2D_GrSLType: |
| 41 | value = 5; |
| 42 | break; |
| 43 | case kIImageStorage2D_GrSLType: |
| 44 | value = 6; |
| 45 | break; |
Brian Salomon | 59dc411 | 2016-11-23 01:02:43 +0000 | [diff] [blame] | 46 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 47 | default: |
| 48 | break; |
| 49 | } |
| 50 | SkASSERT((value & ((1 << kSamplerOrImageTypeKeyBits) - 1)) == value); |
| 51 | return value; |
Brian Salomon | be34882 | 2016-11-22 15:56:30 -0500 | [diff] [blame] | 52 | } |
| 53 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 54 | static uint16_t sampler_key(GrSLType samplerType, GrPixelConfig config, GrShaderFlags visibility, |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 55 | const GrShaderCaps& caps) { |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 56 | int samplerTypeKey = image_storage_or_sampler_uniform_type_key(samplerType); |
| 57 | |
| 58 | GR_STATIC_ASSERT(1 == sizeof(caps.configTextureSwizzle(config).asKey())); |
| 59 | return SkToU16(samplerTypeKey | |
| 60 | caps.configTextureSwizzle(config).asKey() << kSamplerOrImageTypeKeyBits | |
| 61 | (caps.samplerPrecision(config, visibility) << (8 + kSamplerOrImageTypeKeyBits))); |
| 62 | } |
| 63 | |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 64 | static uint16_t storage_image_key(const GrResourceIOProcessor::ImageStorageAccess& imageAccess) { |
Robert Phillips | 8a02f65 | 2017-05-12 14:49:16 -0400 | [diff] [blame] | 65 | GrSLType type = imageAccess.proxy()->imageStorageType(); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 66 | return image_storage_or_sampler_uniform_type_key(type) | |
| 67 | (int)imageAccess.format() << kSamplerOrImageTypeKeyBits; |
| 68 | } |
| 69 | |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 70 | static void add_sampler_and_image_keys(GrProcessorKeyBuilder* b, const GrResourceIOProcessor& proc, |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 71 | const GrShaderCaps& caps) { |
Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 72 | int numTextureSamplers = proc.numTextureSamplers(); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 73 | int numBuffers = proc.numBuffers(); |
| 74 | int numImageStorages = proc.numImageStorages(); |
| 75 | int numUniforms = numTextureSamplers + numBuffers + numImageStorages; |
| 76 | // Need two bytes per key. |
| 77 | int word32Count = (numUniforms + 1) / 2; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 78 | if (0 == word32Count) { |
| 79 | return; |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 80 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 81 | uint16_t* k16 = SkTCast<uint16_t*>(b->add32n(word32Count)); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 82 | int j = 0; |
| 83 | for (int i = 0; i < numTextureSamplers; ++i, ++j) { |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 84 | const GrResourceIOProcessor::TextureSampler& sampler = proc.textureSampler(i); |
Robert Phillips | 9bee2e5 | 2017-05-29 12:37:20 -0400 | [diff] [blame] | 85 | const GrTexture* tex = sampler.peekTexture(); |
| 86 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 87 | k16[j] = sampler_key(tex->texturePriv().samplerType(), tex->config(), sampler.visibility(), |
| 88 | caps); |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 89 | } |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 90 | for (int i = 0; i < numBuffers; ++i, ++j) { |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 91 | const GrResourceIOProcessor::BufferAccess& access = proc.bufferAccess(i); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 92 | k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(), |
| 93 | caps); |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 94 | } |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 95 | for (int i = 0; i < numImageStorages; ++i, ++j) { |
| 96 | k16[j] = storage_image_key(proc.imageStorageAccess(i)); |
| 97 | } |
| 98 | // zero the last 16 bits if the number of uniforms for samplers and image storages is odd. |
| 99 | if (numUniforms & 0x1) { |
| 100 | k16[numUniforms] = 0; |
bsalomon | 65859ec | 2016-01-11 09:17:52 -0800 | [diff] [blame] | 101 | } |
joshualitt | 23e280d | 2014-09-18 12:26:38 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /** |
| 105 | * A function which emits a meta key into the key builder. This is required because shader code may |
| 106 | * be dependent on properties of the effect that the effect itself doesn't use |
| 107 | * in its key (e.g. the pixel format of textures used). So we create a meta-key for |
| 108 | * 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] | 109 | * 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] | 110 | * transforms, etc, for the space allotted in the meta-key. NOTE, both FPs and GPs share this |
| 111 | * 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] | 112 | */ |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 113 | static bool gen_meta_key(const GrResourceIOProcessor& proc, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 114 | const GrShaderCaps& shaderCaps, |
joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 115 | uint32_t transformKey, |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 116 | GrProcessorKeyBuilder* b) { |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 117 | size_t processorKeySize = b->size(); |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 118 | uint32_t classID = proc.classID(); |
joshualitt | 89c7a2e | 2014-10-10 14:11:59 -0700 | [diff] [blame] | 119 | |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 120 | // Currently we allow 16 bits for the class id and the overall processor key size. |
egdaniel | 0d9990f | 2016-07-29 07:36:52 -0700 | [diff] [blame] | 121 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)SK_MaxU16); |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 122 | if ((processorKeySize | classID) & kMetaKeyInvalidMask) { |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 123 | return false; |
| 124 | } |
| 125 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 126 | add_sampler_and_image_keys(b, proc, shaderCaps); |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 127 | |
| 128 | uint32_t* key = b->add32n(2); |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 129 | key[0] = (classID << 16) | SkToU32(processorKeySize); |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 130 | key[1] = transformKey; |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 131 | return true; |
| 132 | } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 133 | |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 134 | static bool gen_meta_key(const GrXferProcessor& xp, |
| 135 | const GrShaderCaps& shaderCaps, |
| 136 | GrProcessorKeyBuilder* b) { |
| 137 | size_t processorKeySize = b->size(); |
| 138 | uint32_t classID = xp.classID(); |
| 139 | |
| 140 | // Currently we allow 16 bits for the class id and the overall processor key size. |
| 141 | static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)SK_MaxU16); |
| 142 | if ((processorKeySize | classID) & kMetaKeyInvalidMask) { |
| 143 | return false; |
| 144 | } |
| 145 | |
| 146 | b->add32((classID << 16) | SkToU32(processorKeySize)); |
| 147 | return true; |
| 148 | } |
| 149 | |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 150 | static bool gen_frag_proc_and_meta_keys(const GrPrimitiveProcessor& primProc, |
wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 151 | const GrFragmentProcessor& fp, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 152 | const GrShaderCaps& shaderCaps, |
wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 153 | GrProcessorKeyBuilder* b) { |
| 154 | for (int i = 0; i < fp.numChildProcessors(); ++i) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 155 | if (!gen_frag_proc_and_meta_keys(primProc, fp.childProcessor(i), shaderCaps, b)) { |
wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 156 | return false; |
| 157 | } |
| 158 | } |
| 159 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 160 | fp.getGLSLProcessorKey(shaderCaps, b); |
wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 161 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 162 | return gen_meta_key(fp, shaderCaps, primProc.getTransformKey(fp.coordTransforms(), |
| 163 | fp.numCoordTransforms()), b); |
wangyix | a7f4c43 | 2015-08-20 07:25:02 -0700 | [diff] [blame] | 164 | } |
| 165 | |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 166 | bool GrProgramDesc::Build(GrProgramDesc* desc, |
| 167 | const GrPrimitiveProcessor& primProc, |
bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 168 | bool hasPointSize, |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 169 | const GrPipeline& pipeline, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 170 | const GrShaderCaps& shaderCaps) { |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 171 | // The descriptor is used as a cache key. Thus when a field of the |
| 172 | // descriptor will not affect program generation (because of the attribute |
| 173 | // bindings in use or other descriptor field settings) it should be set |
| 174 | // to a canonical value to avoid duplicate programs with different keys. |
| 175 | |
egdaniel | c67870c | 2014-11-26 08:50:50 -0800 | [diff] [blame] | 176 | GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t)); |
| 177 | // Make room for everything up to the effect keys. |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 178 | desc->key().reset(); |
| 179 | desc->key().push_back_n(kProcessorKeysOffset); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 180 | |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 181 | GrProcessorKeyBuilder b(&desc->key()); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 182 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 183 | primProc.getGLSLProcessorKey(shaderCaps, &b); |
| 184 | if (!gen_meta_key(primProc, shaderCaps, 0, &b)) { |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 185 | desc->key().reset(); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 186 | return false; |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 187 | } |
cdalton | 8733210 | 2016-02-26 12:22:02 -0800 | [diff] [blame] | 188 | GrProcessor::RequiredFeatures requiredFeatures = primProc.requiredFeatures(); |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 189 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 190 | for (int i = 0; i < pipeline.numFragmentProcessors(); ++i) { |
| 191 | const GrFragmentProcessor& fp = pipeline.getFragmentProcessor(i); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 192 | if (!gen_frag_proc_and_meta_keys(primProc, fp, shaderCaps, &b)) { |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 193 | desc->key().reset(); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 194 | return false; |
| 195 | } |
cdalton | 8733210 | 2016-02-26 12:22:02 -0800 | [diff] [blame] | 196 | requiredFeatures |= fp.requiredFeatures(); |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 197 | } |
egdaniel | 170f90b | 2014-09-16 12:54:40 -0700 | [diff] [blame] | 198 | |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 199 | const GrXferProcessor& xp = pipeline.getXferProcessor(); |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 200 | const GrSurfaceOrigin* originIfDstTexture = nullptr; |
| 201 | GrSurfaceOrigin origin; |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 202 | if (pipeline.dstTextureProxy()) { |
| 203 | origin = pipeline.dstTextureProxy()->origin(); |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 204 | originIfDstTexture = &origin; |
| 205 | } |
| 206 | xp.getGLSLProcessorKey(shaderCaps, &b, originIfDstTexture); |
Brian Salomon | ab015ef | 2017-04-04 10:15:51 -0400 | [diff] [blame] | 207 | if (!gen_meta_key(xp, shaderCaps, &b)) { |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 208 | desc->key().reset(); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 209 | return false; |
| 210 | } |
cdalton | 8733210 | 2016-02-26 12:22:02 -0800 | [diff] [blame] | 211 | requiredFeatures |= xp.requiredFeatures(); |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 212 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 213 | // --------DO NOT MOVE HEADER ABOVE THIS LINE-------------------------------------------------- |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 214 | // Because header is a pointer into the dynamic array, we can't push any new data into the key |
| 215 | // below here. |
egdaniel | 5d8f69f | 2016-09-07 07:24:12 -0700 | [diff] [blame] | 216 | KeyHeader* header = desc->atOffset<KeyHeader, kHeaderOffset>(); |
bsalomon@google.com | 798c8c4 | 2013-03-27 19:50:27 +0000 | [diff] [blame] | 217 | |
joshualitt | 6517134 | 2014-10-09 07:25:36 -0700 | [diff] [blame] | 218 | // make sure any padding in the header is zeroed. |
| 219 | memset(header, 0, kHeaderSize); |
| 220 | |
Robert Phillips | 2890fbf | 2017-07-26 15:48:41 -0400 | [diff] [blame] | 221 | GrRenderTargetProxy* proxy = pipeline.proxy(); |
egdaniel | 56cf6dc | 2015-11-30 10:15:58 -0800 | [diff] [blame] | 222 | |
cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 223 | if (requiredFeatures & GrProcessor::kSampleLocations_RequiredFeature) { |
| 224 | SkASSERT(pipeline.isHWAntialiasState()); |
Robert Phillips | 2890fbf | 2017-07-26 15:48:41 -0400 | [diff] [blame] | 225 | |
| 226 | GrRenderTarget* rt = pipeline.renderTarget(); |
cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 227 | header->fSamplePatternKey = |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 228 | rt->renderTargetPriv().getMultisampleSpecs(pipeline).fUniqueID; |
cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 229 | } else { |
| 230 | header->fSamplePatternKey = 0; |
| 231 | } |
| 232 | |
Robert Phillips | 2890fbf | 2017-07-26 15:48:41 -0400 | [diff] [blame] | 233 | header->fOutputSwizzle = shaderCaps.configOutputSwizzle(proxy->config()).asKey(); |
bsalomon | 7f9b2e4 | 2016-01-12 13:29:26 -0800 | [diff] [blame] | 234 | |
bsalomon | d79c549 | 2015-04-27 10:07:04 -0700 | [diff] [blame] | 235 | header->fSnapVerticesToPixelCenters = pipeline.snapVerticesToPixelCenters(); |
bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 236 | header->fColorFragmentProcessorCnt = pipeline.numColorFragmentProcessors(); |
| 237 | header->fCoverageFragmentProcessorCnt = pipeline.numCoverageFragmentProcessors(); |
| 238 | // Fail if the client requested more processors than the key can fit. |
| 239 | if (header->fColorFragmentProcessorCnt != pipeline.numColorFragmentProcessors() || |
| 240 | header->fCoverageFragmentProcessorCnt != pipeline.numCoverageFragmentProcessors()) { |
| 241 | return false; |
| 242 | } |
| 243 | header->fHasPointSize = hasPointSize ? 1 : 0; |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 244 | return true; |
| 245 | } |