blob: 41993e190df7d2974a0552d8b7c0a7898f14acb3 [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);
Brian Salomonf9f45122016-11-29 11:59:17 -050085 const GrTexture* tex = sampler.texture();
86 k16[j] = sampler_key(tex->texturePriv().samplerType(), tex->config(), sampler.visibility(),
87 caps);
bsalomoncdee0092016-01-08 13:20:12 -080088 }
Brian Salomonf9f45122016-11-29 11:59:17 -050089 for (int i = 0; i < numBuffers; ++i, ++j) {
Brian Salomonab015ef2017-04-04 10:15:51 -040090 const GrResourceIOProcessor::BufferAccess& access = proc.bufferAccess(i);
Brian Salomonf9f45122016-11-29 11:59:17 -050091 k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(),
92 caps);
cdalton74b8d322016-04-11 14:47:28 -070093 }
Brian Salomonf9f45122016-11-29 11:59:17 -050094 for (int i = 0; i < numImageStorages; ++i, ++j) {
95 k16[j] = storage_image_key(proc.imageStorageAccess(i));
96 }
97 // zero the last 16 bits if the number of uniforms for samplers and image storages is odd.
98 if (numUniforms & 0x1) {
99 k16[numUniforms] = 0;
bsalomon65859ec2016-01-11 09:17:52 -0800100 }
joshualitt23e280d2014-09-18 12:26:38 -0700101}
102
103/**
104 * A function which emits a meta key into the key builder. This is required because shader code may
105 * be dependent on properties of the effect that the effect itself doesn't use
106 * in its key (e.g. the pixel format of textures used). So we create a meta-key for
107 * every effect using this function. It is also responsible for inserting the effect's class ID
joshualittb0a8a372014-09-23 09:50:21 -0700108 * which must be different for every GrProcessor subclass. It can fail if an effect uses too many
bsalomoncdee0092016-01-08 13:20:12 -0800109 * transforms, etc, for the space allotted in the meta-key. NOTE, both FPs and GPs share this
110 * function because it is hairy, though FPs do not have attribs, and GPs do not have transforms
joshualitt23e280d2014-09-18 12:26:38 -0700111 */
Brian Salomonab015ef2017-04-04 10:15:51 -0400112static bool gen_meta_key(const GrResourceIOProcessor& proc,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500113 const GrShaderCaps& shaderCaps,
joshualitta5305a12014-10-10 17:47:00 -0700114 uint32_t transformKey,
egdanielc67870c2014-11-26 08:50:50 -0800115 GrProcessorKeyBuilder* b) {
egdanielc67870c2014-11-26 08:50:50 -0800116 size_t processorKeySize = b->size();
joshualitteb2a6762014-12-04 11:35:33 -0800117 uint32_t classID = proc.classID();
joshualitt89c7a2e2014-10-10 14:11:59 -0700118
bsalomon7ea33f52015-11-22 14:51:00 -0800119 // Currently we allow 16 bits for the class id and the overall processor key size.
egdaniel0d9990f2016-07-29 07:36:52 -0700120 static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)SK_MaxU16);
bsalomon7ea33f52015-11-22 14:51:00 -0800121 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
joshualitt65171342014-10-09 07:25:36 -0700122 return false;
123 }
124
Brian Salomon1edc5b92016-11-29 13:43:46 -0500125 add_sampler_and_image_keys(b, proc, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800126
127 uint32_t* key = b->add32n(2);
bsalomon7ea33f52015-11-22 14:51:00 -0800128 key[0] = (classID << 16) | SkToU32(processorKeySize);
bsalomoncdee0092016-01-08 13:20:12 -0800129 key[1] = transformKey;
joshualitt65171342014-10-09 07:25:36 -0700130 return true;
131}
joshualittb0a8a372014-09-23 09:50:21 -0700132
Brian Salomonab015ef2017-04-04 10:15:51 -0400133static bool gen_meta_key(const GrXferProcessor& xp,
134 const GrShaderCaps& shaderCaps,
135 GrProcessorKeyBuilder* b) {
136 size_t processorKeySize = b->size();
137 uint32_t classID = xp.classID();
138
139 // Currently we allow 16 bits for the class id and the overall processor key size.
140 static const uint32_t kMetaKeyInvalidMask = ~((uint32_t)SK_MaxU16);
141 if ((processorKeySize | classID) & kMetaKeyInvalidMask) {
142 return false;
143 }
144
145 b->add32((classID << 16) | SkToU32(processorKeySize));
146 return true;
147}
148
bsalomon7ea33f52015-11-22 14:51:00 -0800149static bool gen_frag_proc_and_meta_keys(const GrPrimitiveProcessor& primProc,
wangyixa7f4c432015-08-20 07:25:02 -0700150 const GrFragmentProcessor& fp,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500151 const GrShaderCaps& shaderCaps,
wangyixa7f4c432015-08-20 07:25:02 -0700152 GrProcessorKeyBuilder* b) {
153 for (int i = 0; i < fp.numChildProcessors(); ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500154 if (!gen_frag_proc_and_meta_keys(primProc, fp.childProcessor(i), shaderCaps, b)) {
wangyixa7f4c432015-08-20 07:25:02 -0700155 return false;
156 }
157 }
158
Brian Salomon1edc5b92016-11-29 13:43:46 -0500159 fp.getGLSLProcessorKey(shaderCaps, b);
wangyixa7f4c432015-08-20 07:25:02 -0700160
Brian Salomon1edc5b92016-11-29 13:43:46 -0500161 return gen_meta_key(fp, shaderCaps, primProc.getTransformKey(fp.coordTransforms(),
162 fp.numCoordTransforms()), b);
wangyixa7f4c432015-08-20 07:25:02 -0700163}
164
egdaniel5d8f69f2016-09-07 07:24:12 -0700165bool GrProgramDesc::Build(GrProgramDesc* desc,
166 const GrPrimitiveProcessor& primProc,
bsalomon2eda5b32016-09-21 10:53:24 -0700167 bool hasPointSize,
egdaniel5d8f69f2016-09-07 07:24:12 -0700168 const GrPipeline& pipeline,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500169 const GrShaderCaps& shaderCaps) {
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000170 // The descriptor is used as a cache key. Thus when a field of the
171 // descriptor will not affect program generation (because of the attribute
172 // bindings in use or other descriptor field settings) it should be set
173 // to a canonical value to avoid duplicate programs with different keys.
174
egdanielc67870c2014-11-26 08:50:50 -0800175 GR_STATIC_ASSERT(0 == kProcessorKeysOffset % sizeof(uint32_t));
176 // Make room for everything up to the effect keys.
egdaniel5d8f69f2016-09-07 07:24:12 -0700177 desc->key().reset();
178 desc->key().push_back_n(kProcessorKeysOffset);
joshualittbd769d02014-09-04 08:56:46 -0700179
egdaniel5d8f69f2016-09-07 07:24:12 -0700180 GrProcessorKeyBuilder b(&desc->key());
joshualitt9b989322014-12-15 14:16:27 -0800181
Brian Salomon1edc5b92016-11-29 13:43:46 -0500182 primProc.getGLSLProcessorKey(shaderCaps, &b);
183 if (!gen_meta_key(primProc, shaderCaps, 0, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700184 desc->key().reset();
joshualitt9b989322014-12-15 14:16:27 -0800185 return false;
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000186 }
cdalton87332102016-02-26 12:22:02 -0800187 GrProcessor::RequiredFeatures requiredFeatures = primProc.requiredFeatures();
bsalomon929f29a2014-07-17 07:55:11 -0700188
bsalomonac856c92015-08-27 06:30:17 -0700189 for (int i = 0; i < pipeline.numFragmentProcessors(); ++i) {
190 const GrFragmentProcessor& fp = pipeline.getFragmentProcessor(i);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500191 if (!gen_frag_proc_and_meta_keys(primProc, fp, shaderCaps, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700192 desc->key().reset();
joshualittb0a8a372014-09-23 09:50:21 -0700193 return false;
194 }
cdalton87332102016-02-26 12:22:02 -0800195 requiredFeatures |= fp.requiredFeatures();
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000196 }
egdaniel170f90b2014-09-16 12:54:40 -0700197
bsalomon2047b782015-12-21 13:12:54 -0800198 const GrXferProcessor& xp = pipeline.getXferProcessor();
Brian Salomon18dfa982017-04-03 16:57:43 -0400199 const GrSurfaceOrigin* originIfDstTexture = nullptr;
200 GrSurfaceOrigin origin;
Robert Phillipsc3757042017-05-17 13:00:14 +0000201 if (pipeline.dstTexture()) {
202 origin = pipeline.dstTexture()->origin();
Brian Salomon18dfa982017-04-03 16:57:43 -0400203 originIfDstTexture = &origin;
204 }
205 xp.getGLSLProcessorKey(shaderCaps, &b, originIfDstTexture);
Brian Salomonab015ef2017-04-04 10:15:51 -0400206 if (!gen_meta_key(xp, shaderCaps, &b)) {
egdaniel5d8f69f2016-09-07 07:24:12 -0700207 desc->key().reset();
egdanielc2304142014-12-11 13:15:13 -0800208 return false;
209 }
cdalton87332102016-02-26 12:22:02 -0800210 requiredFeatures |= xp.requiredFeatures();
egdanielc2304142014-12-11 13:15:13 -0800211
joshualitt65171342014-10-09 07:25:36 -0700212 // --------DO NOT MOVE HEADER ABOVE THIS LINE--------------------------------------------------
bsalomon848faf02014-07-11 10:01:02 -0700213 // Because header is a pointer into the dynamic array, we can't push any new data into the key
214 // below here.
egdaniel5d8f69f2016-09-07 07:24:12 -0700215 KeyHeader* header = desc->atOffset<KeyHeader, kHeaderOffset>();
bsalomon@google.com798c8c42013-03-27 19:50:27 +0000216
joshualitt65171342014-10-09 07:25:36 -0700217 // make sure any padding in the header is zeroed.
218 memset(header, 0, kHeaderSize);
219
Ethan Nicholasde4d3012017-01-19 16:58:02 -0500220 GrRenderTarget* rt = pipeline.getRenderTarget();
egdaniel56cf6dc2015-11-30 10:15:58 -0800221
cdalton28f45b92016-03-07 13:58:26 -0800222 if (requiredFeatures & GrProcessor::kSampleLocations_RequiredFeature) {
223 SkASSERT(pipeline.isHWAntialiasState());
224 header->fSamplePatternKey =
csmartdaltonc633abb2016-11-01 08:55:55 -0700225 rt->renderTargetPriv().getMultisampleSpecs(pipeline).fUniqueID;
cdalton28f45b92016-03-07 13:58:26 -0800226 } else {
227 header->fSamplePatternKey = 0;
228 }
229
Brian Salomon1edc5b92016-11-29 13:43:46 -0500230 header->fOutputSwizzle = shaderCaps.configOutputSwizzle(rt->config()).asKey();
bsalomon7f9b2e42016-01-12 13:29:26 -0800231
bsalomond79c5492015-04-27 10:07:04 -0700232 header->fSnapVerticesToPixelCenters = pipeline.snapVerticesToPixelCenters();
bsalomon2eda5b32016-09-21 10:53:24 -0700233 header->fColorFragmentProcessorCnt = pipeline.numColorFragmentProcessors();
234 header->fCoverageFragmentProcessorCnt = pipeline.numCoverageFragmentProcessors();
235 // Fail if the client requested more processors than the key can fit.
236 if (header->fColorFragmentProcessorCnt != pipeline.numColorFragmentProcessors() ||
237 header->fCoverageFragmentProcessorCnt != pipeline.numCoverageFragmentProcessors()) {
238 return false;
239 }
240 header->fHasPointSize = hasPointSize ? 1 : 0;
bsalomon848faf02014-07-11 10:01:02 -0700241 return true;
242}