| tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 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 | */ |
| 7 | |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 8 | #include "GrProcessor.h" |
| bsalomon@google.com | 2eaaefd | 2012-10-29 19:51:22 +0000 | [diff] [blame] | 9 | #include "GrContext.h" |
| joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 10 | #include "GrGeometryProcessor.h" |
| egdaniel | 605dd0f | 2014-11-12 08:35:25 -0800 | [diff] [blame] | 11 | #include "GrInvariantOutput.h" |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 12 | #include "GrMemoryPool.h" |
| Brian Salomon | 514baff | 2016-11-17 15:17:07 -0500 | [diff] [blame] | 13 | #include "GrSamplerParams.h" |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 14 | #include "GrTexturePriv.h" |
| Robert Phillips | bc7a4fb | 2017-01-23 15:30:35 -0500 | [diff] [blame] | 15 | #include "GrTextureProxy.h" |
| egdaniel | 915187b | 2014-12-05 12:58:28 -0800 | [diff] [blame] | 16 | #include "GrXferProcessor.h" |
| joshualitt | 23ac62c | 2015-03-30 09:53:47 -0700 | [diff] [blame] | 17 | #include "SkSpinlock.h" |
| tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 18 | |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 19 | #if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |
| 20 | |
| joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 21 | class GrFragmentProcessor; |
| 22 | class GrGeometryProcessor; |
| 23 | |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 24 | /* |
| 25 | * Originally these were both in the processor unit test header, but then it seemed to cause linker |
| 26 | * problems on android. |
| 27 | */ |
| 28 | template<> |
| 29 | SkTArray<GrProcessorTestFactory<GrFragmentProcessor>*, true>* |
| 30 | GrProcessorTestFactory<GrFragmentProcessor>::GetFactories() { |
| 31 | static SkTArray<GrProcessorTestFactory<GrFragmentProcessor>*, true> gFactories; |
| 32 | return &gFactories; |
| 33 | } |
| 34 | |
| 35 | template<> |
| Brian Salomon | 003312a | 2017-01-09 16:00:33 +0000 | [diff] [blame] | 36 | SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true>* |
| 37 | GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() { |
| 38 | static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactories; |
| Brian Salomon | a8f80de | 2017-01-07 09:37:13 -0500 | [diff] [blame] | 39 | return &gFactories; |
| 40 | } |
| 41 | |
| Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 42 | SkTArray<GrXPFactoryTestFactory*, true>* GrXPFactoryTestFactory::GetFactories() { |
| 43 | static SkTArray<GrXPFactoryTestFactory*, true> gFactories; |
| 44 | return &gFactories; |
| 45 | } |
| 46 | |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 47 | /* |
| 48 | * To ensure we always have successful static initialization, before creating from the factories |
| 49 | * we verify the count is as expected. If a new factory is added, then these numbers must be |
| 50 | * manually adjusted. |
| 51 | */ |
| Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 52 | static const int kFPFactoryCount = 40; |
| joshualitt | 4973d9d | 2014-11-08 09:24:25 -0800 | [diff] [blame] | 53 | static const int kGPFactoryCount = 14; |
| Brian Salomon | 1c4717b | 2017-01-06 12:54:58 -0500 | [diff] [blame] | 54 | static const int kXPFactoryCount = 4; |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 55 | |
| 56 | template<> |
| 57 | void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() { |
| 58 | if (kFPFactoryCount != GetFactories()->count()) { |
| Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 59 | SkDebugf("\nExpected %d fragment processor factories, found %d.\n", |
| 60 | kFPFactoryCount, GetFactories()->count()); |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 61 | SkFAIL("Wrong number of fragment processor factories!"); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | template<> |
| 66 | void GrProcessorTestFactory<GrGeometryProcessor>::VerifyFactoryCount() { |
| 67 | if (kGPFactoryCount != GetFactories()->count()) { |
| Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 68 | SkDebugf("\nExpected %d geometry processor factories, found %d.\n", |
| 69 | kGPFactoryCount, GetFactories()->count()); |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 70 | SkFAIL("Wrong number of geometry processor factories!"); |
| 71 | } |
| 72 | } |
| 73 | |
| Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 74 | void GrXPFactoryTestFactory::VerifyFactoryCount() { |
| egdaniel | 378092f | 2014-12-03 10:40:13 -0800 | [diff] [blame] | 75 | if (kXPFactoryCount != GetFactories()->count()) { |
| Ben Wagner | c03e1c5 | 2016-10-17 15:20:02 -0400 | [diff] [blame] | 76 | SkDebugf("\nExpected %d xp factory factories, found %d.\n", |
| 77 | kXPFactoryCount, GetFactories()->count()); |
| egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 78 | SkFAIL("Wrong number of xp factory factories!"); |
| egdaniel | 378092f | 2014-12-03 10:40:13 -0800 | [diff] [blame] | 79 | } |
| 80 | } |
| 81 | |
| joshualitt | 9e87fa7 | 2014-10-09 13:12:35 -0700 | [diff] [blame] | 82 | #endif |
| 83 | |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 84 | |
| joshualitt | 23ac62c | 2015-03-30 09:53:47 -0700 | [diff] [blame] | 85 | // We use a global pool protected by a mutex(spinlock). Chrome may use the same GrContext on |
| 86 | // different threads. The GrContext is not used concurrently on different threads and there is a |
| 87 | // memory barrier between accesses of a context on different threads. Also, there may be multiple |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 88 | // GrContexts and those contexts may be in use concurrently on different threads. |
| 89 | namespace { |
| mtklein | 15923c9 | 2016-02-29 10:14:38 -0800 | [diff] [blame] | 90 | static SkSpinlock gProcessorSpinlock; |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 91 | class MemoryPoolAccessor { |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 92 | public: |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 93 | |
| msarett | 68440f8 | 2016-08-29 14:52:24 -0700 | [diff] [blame] | 94 | // We know in the Android framework there is only one GrContext. |
| 95 | #if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) |
| 96 | MemoryPoolAccessor() {} |
| 97 | ~MemoryPoolAccessor() {} |
| 98 | #else |
| 99 | MemoryPoolAccessor() { gProcessorSpinlock.acquire(); } |
| joshualitt | 23ac62c | 2015-03-30 09:53:47 -0700 | [diff] [blame] | 100 | ~MemoryPoolAccessor() { gProcessorSpinlock.release(); } |
| msarett | 68440f8 | 2016-08-29 14:52:24 -0700 | [diff] [blame] | 101 | #endif |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 102 | |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 103 | GrMemoryPool* pool() const { |
| 104 | static GrMemoryPool gPool(4096, 4096); |
| 105 | return &gPool; |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 106 | } |
| 107 | }; |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 108 | } |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 109 | |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 110 | int32_t GrProcessor::gCurrProcessorClassID = GrProcessor::kIllegalProcessorClassID; |
| tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 111 | |
| bsalomon@google.com | 0ac6af4 | 2013-01-16 15:16:18 +0000 | [diff] [blame] | 112 | /////////////////////////////////////////////////////////////////////////////// |
| 113 | |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 114 | GrProcessor::~GrProcessor() {} |
| tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 115 | |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 116 | void GrProcessor::addTextureSampler(const TextureSampler* access) { |
| 117 | fTextureSamplers.push_back(access); |
| twiz@google.com | a5e65ec | 2012-08-02 15:15:16 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| Brian Salomon | b014cca | 2016-11-18 11:39:15 -0500 | [diff] [blame] | 120 | void GrProcessor::addBufferAccess(const BufferAccess* access) { |
| cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 121 | fBufferAccesses.push_back(access); |
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | void GrProcessor::addImageStorageAccess(const ImageStorageAccess* access) { |
| 125 | fImageStorageAccesses.push_back(access); |
| Brian Salomon | e57194f | 2017-01-09 15:30:02 -0500 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | void GrProcessor::addPendingIOs() const { |
| 129 | for (const auto& sampler : fTextureSamplers) { |
| 130 | sampler->programTexture()->markPendingIO(); |
| 131 | } |
| 132 | for (const auto& buffer : fBufferAccesses) { |
| 133 | buffer->programBuffer()->markPendingIO(); |
| 134 | } |
| 135 | for (const auto& imageStorage : fImageStorageAccesses) { |
| 136 | imageStorage->programTexture()->markPendingIO(); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | void GrProcessor::removeRefs() const { |
| 141 | for (const auto& sampler : fTextureSamplers) { |
| 142 | sampler->programTexture()->removeRef(); |
| 143 | } |
| 144 | for (const auto& buffer : fBufferAccesses) { |
| 145 | buffer->programBuffer()->removeRef(); |
| 146 | } |
| 147 | for (const auto& imageStorage : fImageStorageAccesses) { |
| 148 | imageStorage->programTexture()->removeRef(); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void GrProcessor::pendingIOComplete() const { |
| 153 | for (const auto& sampler : fTextureSamplers) { |
| 154 | sampler->programTexture()->pendingIOComplete(); |
| 155 | } |
| 156 | for (const auto& buffer : fBufferAccesses) { |
| 157 | buffer->programBuffer()->pendingIOComplete(); |
| 158 | } |
| 159 | for (const auto& imageStorage : fImageStorageAccesses) { |
| 160 | imageStorage->programTexture()->pendingIOComplete(); |
| 161 | } |
| cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 164 | void* GrProcessor::operator new(size_t size) { |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 165 | return MemoryPoolAccessor().pool()->allocate(size); |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 166 | } |
| 167 | |
| joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 168 | void GrProcessor::operator delete(void* target) { |
| bsalomon | 5baedd6 | 2015-03-09 12:15:53 -0700 | [diff] [blame] | 169 | return MemoryPoolAccessor().pool()->release(target); |
| tomhudson@google.com | dcba4c2 | 2012-07-24 21:36:16 +0000 | [diff] [blame] | 170 | } |
| bsalomon@google.com | 77af680 | 2013-10-02 13:04:56 +0000 | [diff] [blame] | 171 | |
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 172 | bool GrProcessor::hasSameSamplersAndAccesses(const GrProcessor &that) const { |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 173 | if (this->numTextureSamplers() != that.numTextureSamplers() || |
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 174 | this->numBuffers() != that.numBuffers() || |
| 175 | this->numImageStorages() != that.numImageStorages()) { |
| bsalomon | 420d7e9 | 2014-10-16 09:18:09 -0700 | [diff] [blame] | 176 | return false; |
| bsalomon@google.com | 77af680 | 2013-10-02 13:04:56 +0000 | [diff] [blame] | 177 | } |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 178 | for (int i = 0; i < this->numTextureSamplers(); ++i) { |
| 179 | if (this->textureSampler(i) != that.textureSampler(i)) { |
| bsalomon | 420d7e9 | 2014-10-16 09:18:09 -0700 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | } |
| cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 183 | for (int i = 0; i < this->numBuffers(); ++i) { |
| 184 | if (this->bufferAccess(i) != that.bufferAccess(i)) { |
| 185 | return false; |
| 186 | } |
| 187 | } |
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 188 | for (int i = 0; i < this->numImageStorages(); ++i) { |
| 189 | if (this->imageStorageAccess(i) != that.imageStorageAccess(i)) { |
| 190 | return false; |
| 191 | } |
| 192 | } |
| bsalomon | 420d7e9 | 2014-10-16 09:18:09 -0700 | [diff] [blame] | 193 | return true; |
| bsalomon@google.com | 77af680 | 2013-10-02 13:04:56 +0000 | [diff] [blame] | 194 | } |
| egdaniel | 1a8ecdf | 2014-10-03 06:24:12 -0700 | [diff] [blame] | 195 | |
| joshualitt | a5305a1 | 2014-10-10 17:47:00 -0700 | [diff] [blame] | 196 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 197 | |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 198 | GrProcessor::TextureSampler::TextureSampler() {} |
| 199 | |
| Brian Salomon | 514baff | 2016-11-17 15:17:07 -0500 | [diff] [blame] | 200 | GrProcessor::TextureSampler::TextureSampler(GrTexture* texture, const GrSamplerParams& params) { |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 201 | this->reset(texture, params); |
| 202 | } |
| 203 | |
| 204 | GrProcessor::TextureSampler::TextureSampler(GrTexture* texture, |
| Brian Salomon | 514baff | 2016-11-17 15:17:07 -0500 | [diff] [blame] | 205 | GrSamplerParams::FilterMode filterMode, |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 206 | SkShader::TileMode tileXAndY, |
| 207 | GrShaderFlags visibility) { |
| 208 | this->reset(texture, filterMode, tileXAndY, visibility); |
| 209 | } |
| 210 | |
| Robert Phillips | bc7a4fb | 2017-01-23 15:30:35 -0500 | [diff] [blame] | 211 | GrProcessor::TextureSampler::TextureSampler(GrTextureProvider* texProvider, |
| 212 | sk_sp<GrTextureProxy> proxy, |
| Robert Phillips | 901f29a | 2017-01-24 16:24:41 -0500 | [diff] [blame^] | 213 | const GrSamplerParams& params) { |
| 214 | // For now, end the deferral at this time. Once all the TextureSamplers are swapped over |
| 215 | // to taking a GrSurfaceProxy just use the IORefs on the proxy |
| 216 | this->reset(proxy->instantiate(texProvider), params); |
| 217 | } |
| 218 | |
| 219 | GrProcessor::TextureSampler::TextureSampler(GrTextureProvider* texProvider, |
| 220 | sk_sp<GrTextureProxy> proxy, |
| Robert Phillips | bc7a4fb | 2017-01-23 15:30:35 -0500 | [diff] [blame] | 221 | GrSamplerParams::FilterMode filterMode, |
| 222 | SkShader::TileMode tileXAndY, |
| 223 | GrShaderFlags visibility) { |
| 224 | // For now, end the deferral at this time. Once all the TextureSamplers are swapped over |
| 225 | // to taking a GrSurfaceProxy just use the IORefs on the proxy |
| Robert Phillips | 901f29a | 2017-01-24 16:24:41 -0500 | [diff] [blame^] | 226 | this->reset(proxy->instantiate(texProvider), filterMode, tileXAndY, visibility); |
| Robert Phillips | bc7a4fb | 2017-01-23 15:30:35 -0500 | [diff] [blame] | 227 | } |
| 228 | |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 229 | void GrProcessor::TextureSampler::reset(GrTexture* texture, |
| Brian Salomon | 514baff | 2016-11-17 15:17:07 -0500 | [diff] [blame] | 230 | const GrSamplerParams& params, |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 231 | GrShaderFlags visibility) { |
| 232 | SkASSERT(texture); |
| 233 | fTexture.set(SkRef(texture), kRead_GrIOType); |
| 234 | fParams = params; |
| 235 | fParams.setFilterMode(SkTMin(params.filterMode(), texture->texturePriv().highestFilterMode())); |
| 236 | fVisibility = visibility; |
| 237 | } |
| 238 | |
| 239 | void GrProcessor::TextureSampler::reset(GrTexture* texture, |
| Brian Salomon | 514baff | 2016-11-17 15:17:07 -0500 | [diff] [blame] | 240 | GrSamplerParams::FilterMode filterMode, |
| Brian Salomon | 0bbecb2 | 2016-11-17 11:38:22 -0500 | [diff] [blame] | 241 | SkShader::TileMode tileXAndY, |
| 242 | GrShaderFlags visibility) { |
| 243 | SkASSERT(texture); |
| 244 | fTexture.set(SkRef(texture), kRead_GrIOType); |
| 245 | filterMode = SkTMin(filterMode, texture->texturePriv().highestFilterMode()); |
| 246 | fParams.reset(tileXAndY, filterMode); |
| 247 | fVisibility = visibility; |
| 248 | } |
| 249 | |
| 250 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 251 | |
| Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 252 | GrProcessor::ImageStorageAccess::ImageStorageAccess(sk_sp<GrTexture> texture, GrIOType ioType, |
| 253 | GrSLMemoryModel memoryModel, |
| 254 | GrSLRestrict restrict, |
| 255 | GrShaderFlags visibility) { |
| 256 | SkASSERT(texture); |
| 257 | fTexture.set(texture.release(), ioType); |
| 258 | fMemoryModel = memoryModel; |
| 259 | fRestrict = restrict; |
| 260 | fVisibility = visibility; |
| 261 | // We currently infer this from the config. However, we could allow the client to specify |
| 262 | // a format that is different but compatible with the config. |
| 263 | switch (fTexture.get()->config()) { |
| 264 | case kRGBA_8888_GrPixelConfig: |
| 265 | fFormat = GrImageStorageFormat::kRGBA8; |
| 266 | break; |
| 267 | case kRGBA_8888_sint_GrPixelConfig: |
| 268 | fFormat = GrImageStorageFormat::kRGBA8i; |
| 269 | break; |
| 270 | case kRGBA_half_GrPixelConfig: |
| 271 | fFormat = GrImageStorageFormat::kRGBA16f; |
| 272 | break; |
| 273 | case kRGBA_float_GrPixelConfig: |
| 274 | fFormat = GrImageStorageFormat::kRGBA32f; |
| 275 | break; |
| 276 | default: |
| 277 | SkFAIL("Config is not (yet) supported as image storage."); |
| 278 | break; |
| 279 | } |
| 280 | } |