blob: 2365c21229196edaa1244954d1649afa6d561020 [file] [log] [blame]
tomhudson@google.com168e6342012-04-18 17:49:20 +00001/*
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
joshualittb0a8a372014-09-23 09:50:21 -07008#include "GrProcessor.h"
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +00009#include "GrContext.h"
joshualitt2e3b3e32014-12-09 13:31:14 -080010#include "GrGeometryProcessor.h"
tomhudson@google.comdcba4c22012-07-24 21:36:16 +000011#include "GrMemoryPool.h"
Brian Salomon514baff2016-11-17 15:17:07 -050012#include "GrSamplerParams.h"
Brian Salomon0bbecb22016-11-17 11:38:22 -050013#include "GrTexturePriv.h"
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050014#include "GrTextureProxy.h"
egdaniel915187b2014-12-05 12:58:28 -080015#include "GrXferProcessor.h"
joshualitt23ac62c2015-03-30 09:53:47 -070016#include "SkSpinlock.h"
tomhudson@google.com168e6342012-04-18 17:49:20 +000017
joshualitt9e87fa72014-10-09 13:12:35 -070018#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
Hal Canary6f6961e2017-01-31 13:50:44 -050019#if GR_TEST_UTILS
joshualitteb2a6762014-12-04 11:35:33 -080020class GrFragmentProcessor;
21class GrGeometryProcessor;
22
joshualitt9e87fa72014-10-09 13:12:35 -070023/*
24 * Originally these were both in the processor unit test header, but then it seemed to cause linker
25 * problems on android.
26 */
27template<>
28SkTArray<GrProcessorTestFactory<GrFragmentProcessor>*, true>*
29GrProcessorTestFactory<GrFragmentProcessor>::GetFactories() {
30 static SkTArray<GrProcessorTestFactory<GrFragmentProcessor>*, true> gFactories;
31 return &gFactories;
32}
33
34template<>
Brian Salomon003312a2017-01-09 16:00:33 +000035SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true>*
36GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() {
37 static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactories;
Brian Salomona8f80de2017-01-07 09:37:13 -050038 return &gFactories;
39}
40
Brian Salomona1633922017-01-09 11:46:10 -050041SkTArray<GrXPFactoryTestFactory*, true>* GrXPFactoryTestFactory::GetFactories() {
42 static SkTArray<GrXPFactoryTestFactory*, true> gFactories;
43 return &gFactories;
44}
45
joshualitt9e87fa72014-10-09 13:12:35 -070046/*
47 * To ensure we always have successful static initialization, before creating from the factories
48 * we verify the count is as expected. If a new factory is added, then these numbers must be
49 * manually adjusted.
50 */
Ben Wagnerc03e1c52016-10-17 15:20:02 -040051static const int kFPFactoryCount = 40;
joshualitt4973d9d2014-11-08 09:24:25 -080052static const int kGPFactoryCount = 14;
Brian Salomon1c4717b2017-01-06 12:54:58 -050053static const int kXPFactoryCount = 4;
joshualitt9e87fa72014-10-09 13:12:35 -070054
55template<>
56void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() {
57 if (kFPFactoryCount != GetFactories()->count()) {
Ben Wagnerc03e1c52016-10-17 15:20:02 -040058 SkDebugf("\nExpected %d fragment processor factories, found %d.\n",
59 kFPFactoryCount, GetFactories()->count());
joshualitt9e87fa72014-10-09 13:12:35 -070060 SkFAIL("Wrong number of fragment processor factories!");
61 }
62}
63
64template<>
65void GrProcessorTestFactory<GrGeometryProcessor>::VerifyFactoryCount() {
66 if (kGPFactoryCount != GetFactories()->count()) {
Ben Wagnerc03e1c52016-10-17 15:20:02 -040067 SkDebugf("\nExpected %d geometry processor factories, found %d.\n",
68 kGPFactoryCount, GetFactories()->count());
joshualitt9e87fa72014-10-09 13:12:35 -070069 SkFAIL("Wrong number of geometry processor factories!");
70 }
71}
72
Brian Salomona1633922017-01-09 11:46:10 -050073void GrXPFactoryTestFactory::VerifyFactoryCount() {
egdaniel378092f2014-12-03 10:40:13 -080074 if (kXPFactoryCount != GetFactories()->count()) {
Ben Wagnerc03e1c52016-10-17 15:20:02 -040075 SkDebugf("\nExpected %d xp factory factories, found %d.\n",
76 kXPFactoryCount, GetFactories()->count());
egdanielc2304142014-12-11 13:15:13 -080077 SkFAIL("Wrong number of xp factory factories!");
egdaniel378092f2014-12-03 10:40:13 -080078 }
79}
80
joshualitt9e87fa72014-10-09 13:12:35 -070081#endif
Hal Canary6f6961e2017-01-31 13:50:44 -050082#endif
joshualitt9e87fa72014-10-09 13:12:35 -070083
bsalomon5baedd62015-03-09 12:15:53 -070084
joshualitt23ac62c2015-03-30 09:53:47 -070085// 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
bsalomon5baedd62015-03-09 12:15:53 -070088// GrContexts and those contexts may be in use concurrently on different threads.
89namespace {
mtklein15923c92016-02-29 10:14:38 -080090static SkSpinlock gProcessorSpinlock;
bsalomon5baedd62015-03-09 12:15:53 -070091class MemoryPoolAccessor {
tomhudson@google.comdcba4c22012-07-24 21:36:16 +000092public:
tomhudson@google.comdcba4c22012-07-24 21:36:16 +000093
msarett68440f82016-08-29 14:52:24 -070094// 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(); }
joshualitt23ac62c2015-03-30 09:53:47 -0700100 ~MemoryPoolAccessor() { gProcessorSpinlock.release(); }
msarett68440f82016-08-29 14:52:24 -0700101#endif
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000102
bsalomon5baedd62015-03-09 12:15:53 -0700103 GrMemoryPool* pool() const {
104 static GrMemoryPool gPool(4096, 4096);
105 return &gPool;
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000106 }
107};
bsalomon5baedd62015-03-09 12:15:53 -0700108}
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000109
bsalomon5baedd62015-03-09 12:15:53 -0700110int32_t GrProcessor::gCurrProcessorClassID = GrProcessor::kIllegalProcessorClassID;
tomhudson@google.com168e6342012-04-18 17:49:20 +0000111
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000112///////////////////////////////////////////////////////////////////////////////
113
joshualittb0a8a372014-09-23 09:50:21 -0700114GrProcessor::~GrProcessor() {}
tomhudson@google.com168e6342012-04-18 17:49:20 +0000115
Brian Salomon0bbecb22016-11-17 11:38:22 -0500116void GrProcessor::addTextureSampler(const TextureSampler* access) {
117 fTextureSamplers.push_back(access);
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000118}
119
Brian Salomonb014cca2016-11-18 11:39:15 -0500120void GrProcessor::addBufferAccess(const BufferAccess* access) {
cdalton74b8d322016-04-11 14:47:28 -0700121 fBufferAccesses.push_back(access);
Brian Salomonf9f45122016-11-29 11:59:17 -0500122}
123
124void GrProcessor::addImageStorageAccess(const ImageStorageAccess* access) {
125 fImageStorageAccesses.push_back(access);
Brian Salomone57194f2017-01-09 15:30:02 -0500126}
127
128void 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
140void 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
152void 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 }
cdalton74b8d322016-04-11 14:47:28 -0700162}
163
joshualittb0a8a372014-09-23 09:50:21 -0700164void* GrProcessor::operator new(size_t size) {
bsalomon5baedd62015-03-09 12:15:53 -0700165 return MemoryPoolAccessor().pool()->allocate(size);
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000166}
167
joshualittb0a8a372014-09-23 09:50:21 -0700168void GrProcessor::operator delete(void* target) {
bsalomon5baedd62015-03-09 12:15:53 -0700169 return MemoryPoolAccessor().pool()->release(target);
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000170}
bsalomon@google.com77af6802013-10-02 13:04:56 +0000171
Brian Salomonf9f45122016-11-29 11:59:17 -0500172bool GrProcessor::hasSameSamplersAndAccesses(const GrProcessor &that) const {
Brian Salomon0bbecb22016-11-17 11:38:22 -0500173 if (this->numTextureSamplers() != that.numTextureSamplers() ||
Brian Salomonf9f45122016-11-29 11:59:17 -0500174 this->numBuffers() != that.numBuffers() ||
175 this->numImageStorages() != that.numImageStorages()) {
bsalomon420d7e92014-10-16 09:18:09 -0700176 return false;
bsalomon@google.com77af6802013-10-02 13:04:56 +0000177 }
Brian Salomon0bbecb22016-11-17 11:38:22 -0500178 for (int i = 0; i < this->numTextureSamplers(); ++i) {
179 if (this->textureSampler(i) != that.textureSampler(i)) {
bsalomon420d7e92014-10-16 09:18:09 -0700180 return false;
181 }
182 }
cdalton74b8d322016-04-11 14:47:28 -0700183 for (int i = 0; i < this->numBuffers(); ++i) {
184 if (this->bufferAccess(i) != that.bufferAccess(i)) {
185 return false;
186 }
187 }
Brian Salomonf9f45122016-11-29 11:59:17 -0500188 for (int i = 0; i < this->numImageStorages(); ++i) {
189 if (this->imageStorageAccess(i) != that.imageStorageAccess(i)) {
190 return false;
191 }
192 }
bsalomon420d7e92014-10-16 09:18:09 -0700193 return true;
bsalomon@google.com77af6802013-10-02 13:04:56 +0000194}
egdaniel1a8ecdf2014-10-03 06:24:12 -0700195
joshualitta5305a12014-10-10 17:47:00 -0700196///////////////////////////////////////////////////////////////////////////////////////////////////
197
Brian Salomon0bbecb22016-11-17 11:38:22 -0500198GrProcessor::TextureSampler::TextureSampler() {}
199
Brian Salomon514baff2016-11-17 15:17:07 -0500200GrProcessor::TextureSampler::TextureSampler(GrTexture* texture, const GrSamplerParams& params) {
Brian Salomon0bbecb22016-11-17 11:38:22 -0500201 this->reset(texture, params);
202}
203
204GrProcessor::TextureSampler::TextureSampler(GrTexture* texture,
Brian Salomon514baff2016-11-17 15:17:07 -0500205 GrSamplerParams::FilterMode filterMode,
Brian Salomon0bbecb22016-11-17 11:38:22 -0500206 SkShader::TileMode tileXAndY,
207 GrShaderFlags visibility) {
208 this->reset(texture, filterMode, tileXAndY, visibility);
209}
210
Brian Osman32342f02017-03-04 08:12:46 -0500211GrProcessor::TextureSampler::TextureSampler(GrResourceProvider* resourceProvider,
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500212 sk_sp<GrTextureProxy> proxy,
Robert Phillips901f29a2017-01-24 16:24:41 -0500213 const GrSamplerParams& params) {
Brian Osman32342f02017-03-04 08:12:46 -0500214 this->reset(resourceProvider, std::move(proxy), params);
Robert Phillips901f29a2017-01-24 16:24:41 -0500215}
216
Brian Osman32342f02017-03-04 08:12:46 -0500217GrProcessor::TextureSampler::TextureSampler(GrResourceProvider* resourceProvider,
Robert Phillips901f29a2017-01-24 16:24:41 -0500218 sk_sp<GrTextureProxy> proxy,
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500219 GrSamplerParams::FilterMode filterMode,
220 SkShader::TileMode tileXAndY,
221 GrShaderFlags visibility) {
Brian Osman32342f02017-03-04 08:12:46 -0500222 this->reset(resourceProvider, std::move(proxy), filterMode, tileXAndY, visibility);
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500223}
224
Brian Salomon0bbecb22016-11-17 11:38:22 -0500225void GrProcessor::TextureSampler::reset(GrTexture* texture,
Brian Salomon514baff2016-11-17 15:17:07 -0500226 const GrSamplerParams& params,
Brian Salomon0bbecb22016-11-17 11:38:22 -0500227 GrShaderFlags visibility) {
228 SkASSERT(texture);
229 fTexture.set(SkRef(texture), kRead_GrIOType);
230 fParams = params;
231 fParams.setFilterMode(SkTMin(params.filterMode(), texture->texturePriv().highestFilterMode()));
232 fVisibility = visibility;
233}
234
235void GrProcessor::TextureSampler::reset(GrTexture* texture,
Brian Salomon514baff2016-11-17 15:17:07 -0500236 GrSamplerParams::FilterMode filterMode,
Brian Salomon0bbecb22016-11-17 11:38:22 -0500237 SkShader::TileMode tileXAndY,
238 GrShaderFlags visibility) {
239 SkASSERT(texture);
240 fTexture.set(SkRef(texture), kRead_GrIOType);
241 filterMode = SkTMin(filterMode, texture->texturePriv().highestFilterMode());
242 fParams.reset(tileXAndY, filterMode);
243 fVisibility = visibility;
244}
245
Brian Osman32342f02017-03-04 08:12:46 -0500246void GrProcessor::TextureSampler::reset(GrResourceProvider* resourceProvider,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500247 sk_sp<GrTextureProxy> proxy,
248 const GrSamplerParams& params,
249 GrShaderFlags visibility) {
250 // For now, end the deferral at this time. Once all the TextureSamplers are swapped over
251 // to taking a GrSurfaceProxy just use the IORefs on the proxy
Brian Osman32342f02017-03-04 08:12:46 -0500252 GrTexture* texture = proxy->instantiate(resourceProvider);
Robert Phillips30f9bc62017-02-22 15:28:38 -0500253 SkASSERT(texture);
254 fTexture.set(SkRef(texture), kRead_GrIOType);
255 fParams = params;
256 fParams.setFilterMode(SkTMin(params.filterMode(), texture->texturePriv().highestFilterMode()));
257 fVisibility = visibility;
258}
259
Brian Osman32342f02017-03-04 08:12:46 -0500260void GrProcessor::TextureSampler::reset(GrResourceProvider* resourceProvider,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500261 sk_sp<GrTextureProxy> proxy,
262 GrSamplerParams::FilterMode filterMode,
263 SkShader::TileMode tileXAndY,
264 GrShaderFlags visibility) {
265 // For now, end the deferral at this time. Once all the TextureSamplers are swapped over
266 // to taking a GrSurfaceProxy just use the IORefs on the proxy
Brian Osman32342f02017-03-04 08:12:46 -0500267 GrTexture* texture = proxy->instantiate(resourceProvider);
Robert Phillips30f9bc62017-02-22 15:28:38 -0500268 SkASSERT(texture);
269 fTexture.set(SkRef(texture), kRead_GrIOType);
270 filterMode = SkTMin(filterMode, texture->texturePriv().highestFilterMode());
271 fParams.reset(tileXAndY, filterMode);
272 fVisibility = visibility;
273}
274
Brian Salomon0bbecb22016-11-17 11:38:22 -0500275///////////////////////////////////////////////////////////////////////////////////////////////////
276
Brian Salomonf9f45122016-11-29 11:59:17 -0500277GrProcessor::ImageStorageAccess::ImageStorageAccess(sk_sp<GrTexture> texture, GrIOType ioType,
278 GrSLMemoryModel memoryModel,
279 GrSLRestrict restrict,
280 GrShaderFlags visibility) {
281 SkASSERT(texture);
282 fTexture.set(texture.release(), ioType);
283 fMemoryModel = memoryModel;
284 fRestrict = restrict;
285 fVisibility = visibility;
286 // We currently infer this from the config. However, we could allow the client to specify
287 // a format that is different but compatible with the config.
288 switch (fTexture.get()->config()) {
289 case kRGBA_8888_GrPixelConfig:
290 fFormat = GrImageStorageFormat::kRGBA8;
291 break;
292 case kRGBA_8888_sint_GrPixelConfig:
293 fFormat = GrImageStorageFormat::kRGBA8i;
294 break;
295 case kRGBA_half_GrPixelConfig:
296 fFormat = GrImageStorageFormat::kRGBA16f;
297 break;
298 case kRGBA_float_GrPixelConfig:
299 fFormat = GrImageStorageFormat::kRGBA32f;
300 break;
301 default:
302 SkFAIL("Config is not (yet) supported as image storage.");
303 break;
304 }
305}