blob: f40c6b666c7ead6f8d2ddfe74e4c5dbb6e71d798 [file] [log] [blame]
bsalomon@google.com798c8c42013-03-27 19:50:27 +00001/*
egdaniel0d9990f2016-07-29 07:36:52 -07002 * Copyright 2016 Google Inc.
bsalomon@google.com798c8c42013-03-27 19:50:27 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
egdaniel5d8f69f2016-09-07 07:24:12 -07007#include "GrProgramDesc.h"
egdaniel8dd688b2015-01-22 10:16:09 -08008#include "GrPipeline.h"
Brian Salomone7d30482017-03-29 12:09:15 -04009#include "GrPrimitiveProcessor.h"
10#include "GrProcessor.h"
cdalton28f45b92016-03-07 13:58:26 -080011#include "GrRenderTargetPriv.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050012#include "GrShaderCaps.h"
Brian Salomon739c5bf2016-11-07 09:53:44 -050013#include "GrTexturePriv.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000014#include "SkChecksum.h"
egdaniel64c47282015-11-13 06:54:19 -080015#include "glsl/GrGLSLFragmentProcessor.h"
egdaniel2d721d32015-11-11 13:06:05 -080016#include "glsl/GrGLSLFragmentShaderBuilder.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000017
Brian Salomonf9f45122016-11-29 11:59:17 -050018enum {
19 kSamplerOrImageTypeKeyBits = 4
20};
Brian Salomonbe348822016-11-22 15:56:30 -050021
Brian Salomonf9f45122016-11-29 11:59:17 -050022static 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 Salomon59dc4112016-11-23 01:02:43 +000046
Brian Salomonf9f45122016-11-29 11:59:17 -050047 default:
48 break;
49 }
50 SkASSERT((value & ((1 << kSamplerOrImageTypeKeyBits) - 1)) == value);
51 return value;
Brian Salomonbe348822016-11-22 15:56:30 -050052}
53
Brian Salomonf9f45122016-11-29 11:59:17 -050054static uint16_t sampler_key(GrSLType samplerType, GrPixelConfig config, GrShaderFlags visibility,
Brian Salomon94efbf52016-11-29 13:43:05 -050055 const GrShaderCaps& caps) {
Brian Salomonf9f45122016-11-29 11:59:17 -050056 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 Salomonab015ef2017-04-04 10:15:51 -040064static uint16_t storage_image_key(const GrResourceIOProcessor::ImageStorageAccess& imageAccess) {
Robert Phillips8a02f652017-05-12 14:49:16 -040065 GrSLType type = imageAccess.proxy()->imageStorageType();
Brian Salomonf9f45122016-11-29 11:59:17 -050066 return image_storage_or_sampler_uniform_type_key(type) |
67 (int)imageAccess.format() << kSamplerOrImageTypeKeyBits;
68}
69
Brian Salomonab015ef2017-04-04 10:15:51 -040070static void add_sampler_and_image_keys(GrProcessorKeyBuilder* b, const GrResourceIOProcessor& proc,
Brian Salomon94efbf52016-11-29 13:43:05 -050071 const GrShaderCaps& caps) {
Brian Salomon0bbecb22016-11-17 11:38:22 -050072 int numTextureSamplers = proc.numTextureSamplers();
Brian Salomonf9f45122016-11-29 11:59:17 -050073 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;
bsalomoncdee0092016-01-08 13:20:12 -080078 if (0 == word32Count) {
79 return;
joshualitt23e280d2014-09-18 12:26:38 -070080 }
bsalomoncdee0092016-01-08 13:20:12 -080081 uint16_t* k16 = SkTCast<uint16_t*>(b->add32n(word32Count));
Brian Salomonf9f45122016-11-29 11:59:17 -050082 int j = 0;
83 for (int i = 0; i < numTextureSamplers; ++i, ++j) {
Brian Salomonab015ef2017-04-04 10:15:51 -040084 const GrResourceIOProcessor::TextureSampler& sampler = proc.textureSampler(i);
Robert Phillips9bee2e52017-05-29 12:37:20 -040085 const GrTexture* tex = sampler.peekTexture();
86
Brian Salomonf9f45122016-11-29 11:59:17 -050087 k16[j] = sampler_key(tex->texturePriv().samplerType(), tex->config(), sampler.visibility(),
88 caps);
bsalomoncdee0092016-01-08 13:20:12 -080089 }
Brian Salomonf9f45122016-11-29 11:59:17 -050090 for (int i = 0; i < numBuffers; ++i, ++j) {
Brian Salomonab015ef2017-04-04 10:15:51 -040091 const GrResourceIOProcessor::BufferAccess& access = proc.bufferAccess(i);
Brian Salomonf9f45122016-11-29 11:59:17 -050092 k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(),
93 caps);
cdalton74b8d322016-04-11 14:47:28 -070094 }
Brian Salomonf9f45122016-11-29 11:59:17 -050095 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;
bsalomon65859ec2016-01-11 09:17:52 -0800101 }
joshualitt23e280d2014-09-18 12:26:38 -0700102}
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
joshualittb0a8a372014-09-23 09:50:21 -0700109 * which must be different for every GrProcessor subclass. It can fail if an effect uses too many
bsalomoncdee0092016-01-08 13:20:12 -0800110 * 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
joshualitt23e280d2014-09-18 12:26:38 -0700112 */
Brian Salomonab015ef2017-04-04 10:15:51 -0400113static bool gen_meta_key(const GrResourceIOProcessor& proc,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500114 const GrShaderCaps& shaderCaps,
joshualitta5305a12014-10-10 17:47:00 -0700115 uint32_t transformKey,
egdanielc67870c2014-11-26 08:50:50 -0800116 GrProcessorKeyBuilder* b) {
egdanielc67870c2014-11-26 08:50:50 -0800117 size_t processorKeySize = b->size();
joshualitteb2a6762014-12-04 11:35:33 -0800118 uint32_t classID = proc.classID();
joshualitt89c7a2e2014-10-10 14:11:59 -0700119
bsalomon7ea33f52015-11-22 14:51:00 -0800120 // Currently we allow 16 bits for the class id and the overall processor key size.
egdaniel0d9990f2016-07-29 07:36:52 -0700121 static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)SK_MaxU16);
bsalomon7ea33f52015-11-22 14:51:00 -0800122 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
joshualitt65171342014-10-09 07:25:36 -0700123 return false;
124 }
125
Brian Salomon1edc5b92016-11-29 13:43:46 -0500126 add_sampler_and_image_keys(b, proc, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800127
128 uint32_t* key = b->add32n(2);
bsalomon7ea33f52015-11-22 14:51:00 -0800129 key[0] = (classID << 16) | SkToU32(processorKeySize);
bsalomoncdee0092016-01-08 13:20:12 -0800130 key[1] = transformKey;
joshualitt65171342014-10-09 07:25:36 -0700131 return true;
132}
joshualittb0a8a372014-09-23 09:50:21 -0700133
Brian Salomonab015ef2017-04-04 10:15:51 -0400134static 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
bsalomon7ea33f52015-11-22 14:51:00 -0800150static bool gen_frag_proc_and_meta_keys(const GrPrimitiveProcessor& primProc,
wangyixa7f4c432015-08-20 07:25:02 -0700151 const GrFragmentProcessor& fp,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500152 const GrShaderCaps& shaderCaps,
wangyixa7f4c432015-08-20 07:25:02 -0700153 GrProcessorKeyBuilder* b) {
154 for (int i = 0; i < fp.numChildProcessors(); ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500155 if (!gen_frag_proc_and_meta_keys(primProc, fp.childProcessor(i), shaderCaps, b)) {
wangyixa7f4c432015-08-20 07:25:02 -0700156 return false;
157 }
158 }
159
Brian Salomon1edc5b92016-11-29 13:43:46 -0500160 fp.getGLSLProcessorKey(shaderCaps, b);
wangyixa7f4c432015-08-20 07:25:02 -0700161
Brian Salomon1edc5b92016-11-29 13:43:46 -0500162 return gen_meta_key(fp, shaderCaps, primProc.getTransformKey(fp.coordTransforms(),
163 fp.numCoordTransforms()), b);
wangyixa7f4c432015-08-20 07:25:02 -0700164}
165
egdaniel5d8f69f2016-09-07 07:24:12 -0700166bool GrProgramDesc::Build(GrProgramDesc* desc,
167 const GrPrimitiveProcessor& primProc,
bsalomon2eda5b32016-09-21 10:53:24 -0700168 bool hasPointSize,
egdaniel5d8f69f2016-09-07 07:24:12 -0700169 const GrPipeline& pipeline,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500170 const GrShaderCaps& shaderCaps) {
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000171 // 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
egdanielc67870c2014-11-26 08:50:50 -0800176 GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t));
177 // Make room for everything up to the effect keys.
egdaniel5d8f69f2016-09-07 07:24:12 -0700178 desc->key().reset();
179 desc->key().push_back_n(kProcessorKeysOffset);
joshualittbd769d02014-09-04 08:56:46 -0700180
egdaniel5d8f69f2016-09-07 07:24:12 -0700181 GrProcessorKeyBuilder b(&desc->key());
joshualitt9b989322014-12-15 14:16:27 -0800182
Brian Salomon1edc5b92016-11-29 13:43:46 -0500183 primProc.getGLSLProcessorKey(shaderCaps, &b);
184 if (!gen_meta_key(primProc, shaderCaps, 0, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700185 desc->key().reset();
joshualitt9b989322014-12-15 14:16:27 -0800186 return false;
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000187 }
cdalton87332102016-02-26 12:22:02 -0800188 GrProcessor::RequiredFeatures requiredFeatures = primProc.requiredFeatures();
bsalomon929f29a2014-07-17 07:55:11 -0700189
bsalomonac856c92015-08-27 06:30:17 -0700190 for (int i = 0; i < pipeline.numFragmentProcessors(); ++i) {
191 const GrFragmentProcessor& fp = pipeline.getFragmentProcessor(i);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500192 if (!gen_frag_proc_and_meta_keys(primProc, fp, shaderCaps, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700193 desc->key().reset();
joshualittb0a8a372014-09-23 09:50:21 -0700194 return false;
195 }
cdalton87332102016-02-26 12:22:02 -0800196 requiredFeatures |= fp.requiredFeatures();
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000197 }
egdaniel170f90b2014-09-16 12:54:40 -0700198
bsalomon2047b782015-12-21 13:12:54 -0800199 const GrXferProcessor& xp = pipeline.getXferProcessor();
Brian Salomon18dfa982017-04-03 16:57:43 -0400200 const GrSurfaceOrigin* originIfDstTexture = nullptr;
201 GrSurfaceOrigin origin;
Robert Phillipsbb581ce2017-05-29 15:05:15 -0400202 if (pipeline.dstTextureProxy()) {
203 origin = pipeline.dstTextureProxy()->origin();
Brian Salomon18dfa982017-04-03 16:57:43 -0400204 originIfDstTexture = &origin;
205 }
206 xp.getGLSLProcessorKey(shaderCaps, &b, originIfDstTexture);
Brian Salomonab015ef2017-04-04 10:15:51 -0400207 if (!gen_meta_key(xp, shaderCaps, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700208 desc->key().reset();
egdanielc2304142014-12-11 13:15:13 -0800209 return false;
210 }
cdalton87332102016-02-26 12:22:02 -0800211 requiredFeatures |= xp.requiredFeatures();
egdanielc2304142014-12-11 13:15:13 -0800212
joshualitt65171342014-10-09 07:25:36 -0700213 // --------DO NOT MOVE HEADER ABOVE THIS LINE--------------------------------------------------
bsalomon848faf02014-07-11 10:01:02 -0700214 // Because header is a pointer into the dynamic array, we can't push any new data into the key
215 // below here.
egdaniel5d8f69f2016-09-07 07:24:12 -0700216 KeyHeader* header = desc->atOffset<KeyHeader, kHeaderOffset>();
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000217
joshualitt65171342014-10-09 07:25:36 -0700218 // make sure any padding in the header is zeroed.
219 memset(header, 0, kHeaderSize);
220
Robert Phillips2890fbf2017-07-26 15:48:41 -0400221 GrRenderTargetProxy* proxy = pipeline.proxy();
egdaniel56cf6dc2015-11-30 10:15:58 -0800222
cdalton28f45b92016-03-07 13:58:26 -0800223 if (requiredFeatures & GrProcessor::kSampleLocations_RequiredFeature) {
224 SkASSERT(pipeline.isHWAntialiasState());
Robert Phillips2890fbf2017-07-26 15:48:41 -0400225
226 GrRenderTarget* rt = pipeline.renderTarget();
cdalton28f45b92016-03-07 13:58:26 -0800227 header->fSamplePatternKey =
csmartdaltonc633abb2016-11-01 08:55:55 -0700228 rt->renderTargetPriv().getMultisampleSpecs(pipeline).fUniqueID;
cdalton28f45b92016-03-07 13:58:26 -0800229 } else {
230 header->fSamplePatternKey = 0;
231 }
232
Robert Phillips2890fbf2017-07-26 15:48:41 -0400233 header->fOutputSwizzle = shaderCaps.configOutputSwizzle(proxy->config()).asKey();
bsalomon7f9b2e42016-01-12 13:29:26 -0800234
bsalomond79c5492015-04-27 10:07:04 -0700235 header->fSnapVerticesToPixelCenters = pipeline.snapVerticesToPixelCenters();
bsalomon2eda5b32016-09-21 10:53:24 -0700236 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;
bsalomon848faf02014-07-11 10:01:02 -0700244 return true;
245}