blob: 0be98542f29da90cfb6a99998d39ce3a66aa0920 [file] [log] [blame]
bsalomon@google.com27847de2011-02-22 20:59:41 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 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.
bsalomon@google.com27847de2011-02-22 20:59:41 +00006 */
7
8#ifndef GrContext_DEFINED
9#define GrContext_DEFINED
10
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000011#include "SkMatrix.h"
egdaniele61c4112014-06-12 10:24:21 -070012#include "SkPathEffect.h"
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000013#include "SkTypes.h"
joshualitt27a48dc2016-01-08 07:19:47 -080014#include "../private/GrAuditTrail.h"
joshualitt1de610a2016-01-06 08:26:09 -080015#include "../private/GrSingleOwner.h"
Ethan Nicholas00543112018-07-31 09:44:36 -040016#include "../private/GrSkSLFPFactoryCache.h"
Ethan Nicholasd1b2eec2017-11-01 15:45:43 -040017#include "GrContextOptions.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000018
Brian Salomon79bf7ac2018-05-11 13:08:30 -040019// We shouldn't need this but currently Android is relying on this being include transitively.
20#include "SkUnPreMultiply.h"
21
Robert Phillipsc4039ea2018-03-01 11:36:45 -050022class GrAtlasManager;
Robert Phillipsfc711a22018-02-13 17:03:00 -050023class GrBackendFormat;
Greg Daniel51316782017-08-02 15:10:09 +000024class GrBackendSemaphore;
Brian Salomonc7fe0f72018-05-11 10:14:21 -040025class GrCaps;
robertphillips4fd74ae2016-08-03 14:26:53 -070026class GrContextPriv;
bsalomon41b952c2016-03-11 06:46:33 -080027class GrContextThreadSafeProxy;
Brian Salomon52aacd62018-05-10 12:57:17 -040028class GrContextThreadSafeProxyPriv;
robertphillips77a2e522015-10-17 07:43:27 -070029class GrDrawingManager;
joshualittb0a8a372014-09-23 09:50:21 -070030class GrFragmentProcessor;
Greg Daniel02611d92017-07-25 10:05:01 -040031struct GrGLInterface;
Robert Phillipsc4039ea2018-03-01 11:36:45 -050032class GrGlyphCache;
bsalomon@google.com05ef5102011-05-02 21:14:59 +000033class GrGpu;
Greg Daniel02611d92017-07-25 10:05:01 -040034struct GrMockOptions;
Robert Phillipsc994a932018-06-19 13:09:54 -040035class GrOpMemoryPool;
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +000036class GrPath;
Robert Phillips1afd4cd2018-01-08 13:40:32 -050037class GrProxyProvider;
Greg Daniel02611d92017-07-25 10:05:01 -040038class GrRenderTargetContext;
bsalomon0ea80f42015-02-11 10:49:59 -080039class GrResourceCache;
bsalomond309e7a2015-04-30 14:18:54 -070040class GrResourceProvider;
Brian Salomon2bbdcc42017-09-07 12:36:34 -040041class GrSamplerState;
Robert Phillips7ee385e2017-03-30 08:02:11 -040042class GrSurfaceProxy;
Robert Phillipsfc711a22018-02-13 17:03:00 -050043class GrSwizzle;
joshualittb7133be2015-04-08 09:08:31 -070044class GrTextBlobCache;
kkinnunenc6cb56f2014-06-24 00:12:27 -070045class GrTextContext;
Mike Reed84dd8572017-03-08 22:21:00 -050046class GrTextureProxy;
Greg Daniel02611d92017-07-25 10:05:01 -040047struct GrVkBackendContext;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000048
Mike Reed84dd8572017-03-08 22:21:00 -050049class SkImage;
Robert Phillipsfc711a22018-02-13 17:03:00 -050050class SkSurfaceCharacterization;
Mike Reed84dd8572017-03-08 22:21:00 -050051class SkSurfaceProps;
Brian Osman51279982017-08-23 10:12:00 -040052class SkTaskGroup;
Robert Phillipsfc711a22018-02-13 17:03:00 -050053class SkTraceMemoryDump;
Mike Reed84dd8572017-03-08 22:21:00 -050054
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000055class SK_API GrContext : public SkRefCnt {
bsalomon@google.com27847de2011-02-22 20:59:41 +000056public:
57 /**
Brian Salomonc1b9c102018-04-06 09:18:00 -040058 * Creates a GrContext for a backend context. If no GrGLInterface is provided then the result of
59 * GrGLMakeNativeInterface() is used if it succeeds.
bsalomon@google.com27847de2011-02-22 20:59:41 +000060 */
Brian Salomon384fab42017-12-07 12:33:05 -050061 static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>, const GrContextOptions&);
62 static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>);
Brian Salomonc1b9c102018-04-06 09:18:00 -040063 static sk_sp<GrContext> MakeGL(const GrContextOptions&);
64 static sk_sp<GrContext> MakeGL();
65
Greg Daniel10a83da2018-06-14 09:31:11 -040066 static sk_sp<GrContext> MakeVulkan(const GrVkBackendContext&, const GrContextOptions&);
67 static sk_sp<GrContext> MakeVulkan(const GrVkBackendContext&);
Greg Daniel02611d92017-07-25 10:05:01 -040068
Greg Danielb76a72a2017-07-13 15:07:54 -040069#ifdef SK_METAL
70 /**
71 * Makes a GrContext which uses Metal as the backend. The device parameter is an MTLDevice
72 * and queue is an MTLCommandQueue which should be used by the backend. These objects must
73 * have a ref on them which can be transferred to Ganesh which will release the ref when the
74 * GrContext is destroyed.
75 */
76 static sk_sp<GrContext> MakeMetal(void* device, void* queue, const GrContextOptions& options);
Greg Daniel02611d92017-07-25 10:05:01 -040077 static sk_sp<GrContext> MakeMetal(void* device, void* queue);
Greg Danielb76a72a2017-07-13 15:07:54 -040078#endif
79
Greg Daniel02611d92017-07-25 10:05:01 -040080 static sk_sp<GrContext> MakeMock(const GrMockOptions*, const GrContextOptions&);
81 static sk_sp<GrContext> MakeMock(const GrMockOptions*);
82
bsalomon@google.com27847de2011-02-22 20:59:41 +000083 virtual ~GrContext();
84
bungeman6bd52842016-10-27 09:30:08 -070085 sk_sp<GrContextThreadSafeProxy> threadSafeProxy();
bsalomon41b952c2016-03-11 06:46:33 -080086
bsalomon@google.com27847de2011-02-22 20:59:41 +000087 /**
88 * The GrContext normally assumes that no outsider is setting state
89 * within the underlying 3D API's context/device/whatever. This call informs
90 * the context that the state was modified and it should resend. Shouldn't
91 * be called frequently for good performance.
bsalomon@google.com0a208a12013-06-28 18:57:35 +000092 * The flag bits, state, is dpendent on which backend is used by the
93 * context, either GL or D3D (possible in future).
bsalomon@google.com27847de2011-02-22 20:59:41 +000094 */
bsalomon@google.com0a208a12013-06-28 18:57:35 +000095 void resetContext(uint32_t state = kAll_GrBackendState);
bsalomon@google.com27847de2011-02-22 20:59:41 +000096
bsalomon@google.com8fe72472011-03-30 21:26:44 +000097 /**
Robert Phillips88260b52018-01-19 12:56:09 -050098 * Abandons all GPU resources and assumes the underlying backend 3D API context is no longer
bsalomon6e2aad42016-04-01 11:54:31 -070099 * usable. Call this if you have lost the associated GPU context, and thus internal texture,
100 * buffer, etc. references/IDs are now invalid. Calling this ensures that the destructors of the
101 * GrContext and any of its created resource objects will not make backend 3D API calls. Content
102 * rendered but not previously flushed may be lost. After this function is called all subsequent
103 * calls on the GrContext will fail or be no-ops.
104 *
105 * The typical use case for this function is that the underlying 3D context was lost and further
106 * API calls may crash.
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000107 */
Robert Phillips1056eb82018-03-01 14:16:41 -0500108 virtual void abandonContext();
junov@google.com53a55842011-06-08 22:55:10 +0000109
bsalomon6e2aad42016-04-01 11:54:31 -0700110 /**
Khushalc421ca12018-06-26 14:38:34 -0700111 * Returns true if the context was abandoned.
112 */
113 bool abandoned() const;
114
115 /**
bsalomon6e2aad42016-04-01 11:54:31 -0700116 * This is similar to abandonContext() however the underlying 3D context is not yet lost and
117 * the GrContext will cleanup all allocated resources before returning. After returning it will
118 * assume that the underlying context may no longer be valid.
119 *
120 * The typical use case for this function is that the client is going to destroy the 3D context
121 * but can't guarantee that GrContext will be destroyed first (perhaps because it may be ref'ed
122 * elsewhere by either the client or Skia objects).
123 */
Robert Phillips1056eb82018-03-01 14:16:41 -0500124 virtual void releaseResourcesAndAbandonContext();
bsalomon6e2aad42016-04-01 11:54:31 -0700125
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000126 ///////////////////////////////////////////////////////////////////////////
127 // Resource Cache
128
129 /**
130 * Return the current GPU resource cache limits.
131 *
132 * @param maxResources If non-null, returns maximum number of resources that
133 * can be held in the cache.
134 * @param maxResourceBytes If non-null, returns maximum number of bytes of
135 * video memory that can be held in the cache.
136 */
137 void getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000138
139 /**
140 * Gets the current GPU resource cache usage.
141 *
142 * @param resourceCount If non-null, returns the number of resources that are held in the
143 * cache.
144 * @param maxResourceBytes If non-null, returns the total number of bytes of video memory held
145 * in the cache.
146 */
147 void getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const;
148
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000149 /**
Derek Sollenbergeree479142017-05-24 11:41:33 -0400150 * Gets the number of bytes in the cache consumed by purgeable (e.g. unlocked) resources.
151 */
152 size_t getResourceCachePurgeableBytes() const;
153
154 /**
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000155 * Specify the GPU resource cache limits. If the current cache exceeds either
156 * of these, it will be purged (LRU) to keep the cache within these limits.
157 *
158 * @param maxResources The maximum number of resources that can be held in
159 * the cache.
160 * @param maxResourceBytes The maximum number of bytes of video memory
161 * that can be held in the cache.
162 */
163 void setResourceCacheLimits(int maxResources, size_t maxResourceBytes);
commit-bot@chromium.org95c20032014-05-09 14:29:32 +0000164
junov@google.com53a55842011-06-08 22:55:10 +0000165 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000166 * Frees GPU created by the context. Can be called to reduce GPU memory
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000167 * pressure.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000168 */
Robert Phillips1056eb82018-03-01 14:16:41 -0500169 virtual void freeGpuResources();
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000170
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000171 /**
Jim Van Verth76d917c2017-12-13 09:26:37 -0500172 * Purge GPU resources that haven't been used in the past 'msNotUsed' milliseconds or are
173 * otherwise marked for deletion, regardless of whether the context is under budget.
Brian Salomon5e150852017-03-22 14:53:13 -0400174 */
Jim Van Verth76d917c2017-12-13 09:26:37 -0500175 void performDeferredCleanup(std::chrono::milliseconds msNotUsed);
Brian Salomon5e150852017-03-22 14:53:13 -0400176
Mike Klein4b6bde72017-12-14 07:46:55 -0500177 // Temporary compatibility API for Android.
178 void purgeResourcesNotUsedInMs(std::chrono::milliseconds msNotUsed) {
179 this->performDeferredCleanup(msNotUsed);
180 }
181
Derek Sollenberger5480a182017-05-25 16:43:59 -0400182 /**
183 * Purge unlocked resources from the cache until the the provided byte count has been reached
184 * or we have purged all unlocked resources. The default policy is to purge in LRU order, but
185 * can be overridden to prefer purging scratch resources (in LRU order) prior to purging other
186 * resource types.
187 *
188 * @param maxBytesToPurge the desired number of bytes to be purged.
189 * @param preferScratchResources If true scratch resources will be purged prior to other
190 * resource types.
191 */
192 void purgeUnlockedResources(size_t bytesToPurge, bool preferScratchResources);
193
Robert Phillips6eba0632018-03-28 12:25:42 -0400194 /**
195 * This entry point is intended for instances where an app has been backgrounded or
196 * suspended.
197 * If 'scratchResourcesOnly' is true all unlocked scratch resources will be purged but the
198 * unlocked resources with persistent data will remain. If 'scratchResourcesOnly' is false
199 * then all unlocked resources will be purged.
200 * In either case, after the unlocked resources are purged a separate pass will be made to
201 * ensure that resource usage is under budget (i.e., even if 'scratchResourcesOnly' is true
202 * some resources with persistent data may be purged to be under budget).
203 *
204 * @param scratchResourcesOnly If true only unlocked scratch resources will be purged prior
205 * enforcing the budget requirements.
206 */
207 void purgeUnlockedResources(bool scratchResourcesOnly);
208
Brian Salomonbdecacf2018-02-02 20:32:49 -0500209 /**
Brian Salomonf932a632018-04-05 12:46:09 -0400210 * Gets the maximum supported texture size.
211 */
212 int maxTextureSize() const;
213
214 /**
215 * Gets the maximum supported render target size.
216 */
217 int maxRenderTargetSize() const;
218
219 /**
Brian Salomonbdecacf2018-02-02 20:32:49 -0500220 * Can a SkImage be created with the given color type.
221 */
222 bool colorTypeSupportedAsImage(SkColorType) const;
223
224 /**
225 * Can a SkSurface be created with the given color type. To check whether MSAA is supported
226 * use maxSurfaceSampleCountForColorType().
227 */
228 bool colorTypeSupportedAsSurface(SkColorType colorType) const {
229 return this->maxSurfaceSampleCountForColorType(colorType) > 0;
230 }
231
232 /**
233 * Gets the maximum supported sample count for a color type. 1 is returned if only non-MSAA
234 * rendering is supported for the color type. 0 is returned if rendering to this color type
235 * is not supported at all.
236 */
237 int maxSurfaceSampleCountForColorType(SkColorType) const;
238
bsalomon@google.com27847de2011-02-22 20:59:41 +0000239 ///////////////////////////////////////////////////////////////////////////
240 // Misc.
241
242 /**
Greg Daniel51316782017-08-02 15:10:09 +0000243 * Call to ensure all drawing to the context has been issued to the underlying 3D API.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000244 */
bsalomonb77a9072016-09-07 10:02:04 -0700245 void flush();
robertphillipsea461502015-05-26 11:38:03 -0700246
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000247 /**
Greg Daniel51316782017-08-02 15:10:09 +0000248 * Call to ensure all drawing to the context has been issued to the underlying 3D API. After
249 * issuing all commands, numSemaphore semaphores will be signaled by the gpu. The client passes
250 * in an array of numSemaphores GrBackendSemaphores. In general these GrBackendSemaphore's can
251 * be either initialized or not. If they are initialized, the backend uses the passed in
252 * semaphore. If it is not initialized, a new semaphore is created and the GrBackendSemaphore
253 * object is initialized with that semaphore.
254 *
255 * The client will own and be responsible for deleting the underlying semaphores that are stored
256 * and returned in initialized GrBackendSemaphore objects. The GrBackendSemaphore objects
257 * themselves can be deleted as soon as this function returns.
258 *
259 * If the backend API is OpenGL only uninitialized GrBackendSemaphores are supported.
260 * If the backend API is Vulkan either initialized or unitialized semaphores are supported.
261 * If unitialized, the semaphores which are created will be valid for use only with the VkDevice
262 * with which they were created.
263 *
264 * If this call returns GrSemaphoresSubmited::kNo, the GPU backend will not have created or
265 * added any semaphores to signal on the GPU. Thus the client should not have the GPU wait on
266 * any of the semaphores. However, any pending commands to the context will still be flushed.
267 */
268 GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores,
269 GrBackendSemaphore signalSemaphores[]);
270
271 /**
joshualitt0acd0d32015-05-07 08:23:19 -0700272 * An ID associated with this context, guaranteed to be unique.
273 */
274 uint32_t uniqueID() { return fUniqueID; }
275
robertphillips4fd74ae2016-08-03 14:26:53 -0700276 // Provides access to functions that aren't part of the public API.
277 GrContextPriv contextPriv();
278 const GrContextPriv contextPriv() const;
279
Robert Phillips0c4b7b12018-03-06 08:20:37 -0500280 /** Enumerates all cached GPU resources and dumps their memory to traceMemoryDump. */
281 // Chrome is using this!
282 void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const;
283
Khushal3e7548c2018-05-23 15:45:01 -0700284 bool supportsDistanceFieldText() const;
285
Robert Phillips88260b52018-01-19 12:56:09 -0500286protected:
Greg Danielbdf12ad2018-10-12 09:31:11 -0400287 GrContext(GrBackendApi, int32_t id = SK_InvalidGenID);
Robert Phillips88260b52018-01-19 12:56:09 -0500288
Robert Phillipsfde6fa02018-03-02 08:53:14 -0500289 bool initCommon(const GrContextOptions&);
290 virtual bool init(const GrContextOptions&) = 0; // must be called after the ctor!
Robert Phillips1056eb82018-03-01 14:16:41 -0500291
Robert Phillips5a66efb2018-03-07 15:13:18 -0500292 virtual GrAtlasManager* onGetAtlasManager() = 0;
Robert Phillips1056eb82018-03-01 14:16:41 -0500293
Greg Danielbdf12ad2018-10-12 09:31:11 -0400294 const GrBackendApi fBackend;
Robert Phillips1056eb82018-03-01 14:16:41 -0500295 sk_sp<const GrCaps> fCaps;
Robert Phillipsfde6fa02018-03-02 08:53:14 -0500296 sk_sp<GrContextThreadSafeProxy> fThreadSafeProxy;
Ethan Nicholas00543112018-07-31 09:44:36 -0400297 sk_sp<GrSkSLFPFactoryCache> fFPFactoryCache;
Robert Phillips1056eb82018-03-01 14:16:41 -0500298
bsalomon@google.com27847de2011-02-22 20:59:41 +0000299private:
Ethan Nicholas8e265a72018-12-12 16:22:40 -0500300 // fTaskGroup must appear before anything that uses it (e.g. fGpu), so that it is destroyed
301 // after all of its users. Clients of fTaskGroup will generally want to ensure that they call
302 // wait() on it as they are being destroyed, to avoid the possibility of pending tasks being
303 // invoked after objects they depend upon have already been destroyed.
304 std::unique_ptr<SkTaskGroup> fTaskGroup;
Brian Salomon384fab42017-12-07 12:33:05 -0500305 sk_sp<GrGpu> fGpu;
bsalomon41b952c2016-03-11 06:46:33 -0800306 GrResourceCache* fResourceCache;
Brian Osman32342f02017-03-04 08:12:46 -0500307 GrResourceProvider* fResourceProvider;
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500308 GrProxyProvider* fProxyProvider;
bsalomond309e7a2015-04-30 14:18:54 -0700309
Robert Phillipsc994a932018-06-19 13:09:54 -0400310 // All the GrOp-derived classes use this pool.
311 sk_sp<GrOpMemoryPool> fOpMemoryPool;
bsalomon41b952c2016-03-11 06:46:33 -0800312
Robert Phillipsc4039ea2018-03-01 11:36:45 -0500313 GrGlyphCache* fGlyphCache;
bungeman6bd52842016-10-27 09:30:08 -0700314 std::unique_ptr<GrTextBlobCache> fTextBlobCache;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000315
Brian Osman46da1cc2017-02-14 14:15:48 -0500316 bool fDisableGpuYUVConversion;
Brian Osman8a83ca42018-02-12 14:32:17 -0500317 bool fSharpenMipmappedTextures;
bsalomon41b952c2016-03-11 06:46:33 -0800318 bool fDidTestPMConversions;
Brian Osman28804f32017-04-20 10:24:36 -0400319 // true if the PM/UPM conversion succeeded; false otherwise
320 bool fPMUPMConversionsRoundTrip;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000321
joshualitt1de610a2016-01-06 08:26:09 -0800322 // In debug builds we guard against improper thread handling
joshualittde8dc7e2016-01-08 10:09:13 -0800323 // This guard is passed to the GrDrawingManager and, from there to all the
Brian Osman32342f02017-03-04 08:12:46 -0500324 // GrRenderTargetContexts. It is also passed to the GrResourceProvider and SkGpuDevice.
bsalomon41b952c2016-03-11 06:46:33 -0800325 mutable GrSingleOwner fSingleOwner;
joshualitt1de610a2016-01-06 08:26:09 -0800326
bsalomon41b952c2016-03-11 06:46:33 -0800327 const uint32_t fUniqueID;
krajcevski9c6d4d72014-08-12 07:26:25 -0700328
bungeman6bd52842016-10-27 09:30:08 -0700329 std::unique_ptr<GrDrawingManager> fDrawingManager;
robertphillips77a2e522015-10-17 07:43:27 -0700330
bsalomon41b952c2016-03-11 06:46:33 -0800331 GrAuditTrail fAuditTrail;
joshualitt27a48dc2016-01-08 07:19:47 -0800332
Ethan Nicholasd1b2eec2017-11-01 15:45:43 -0400333 GrContextOptions::PersistentCache* fPersistentCache;
334
Brian Osman11052242016-10-27 14:47:55 -0400335 // TODO: have the GrClipStackClip use renderTargetContexts and rm this friending
robertphillips4fd74ae2016-08-03 14:26:53 -0700336 friend class GrContextPriv;
csmartdaltonc6f411e2016-08-05 22:32:12 -0700337
skia.committer@gmail.comcdcb2ce2013-01-29 07:05:52 +0000338 /**
Brian Osman5ea96bf2018-10-02 14:58:05 -0400339 * These functions create premul <-> unpremul effects, using the specialized round-trip effects
340 * from GrConfigConversionEffect.
bsalomon@google.comadc65362013-01-28 14:26:09 +0000341 */
Brian Osman5ea96bf2018-10-02 14:58:05 -0400342 std::unique_ptr<GrFragmentProcessor> createPMToUPMEffect(std::unique_ptr<GrFragmentProcessor>);
343 std::unique_ptr<GrFragmentProcessor> createUPMToPMEffect(std::unique_ptr<GrFragmentProcessor>);
Brian Osman409e74f2017-04-17 11:48:28 -0400344
345 /**
Brian Osman5ea96bf2018-10-02 14:58:05 -0400346 * Returns true if createPMToUPMEffect and createUPMToPMEffect will succeed. In other words,
347 * did we find a pair of round-trip preserving conversion effects?
Brian Osman409e74f2017-04-17 11:48:28 -0400348 */
349 bool validPMUPMConversionExists();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000350
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000351 /**
joshualitt0db6dfa2015-04-10 07:01:30 -0700352 * A callback similar to the above for use by the TextBlobCache
353 * TODO move textblob draw calls below context so we can use the call above.
354 */
355 static void TextBlobCacheOverBudgetCB(void* data);
356
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000357 typedef SkRefCnt INHERITED;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000358};
359
bsalomon41b952c2016-03-11 06:46:33 -0800360/**
361 * Can be used to perform actions related to the generating GrContext in a thread safe manner. The
362 * proxy does not access the 3D API (e.g. OpenGL) that backs the generating GrContext.
363 */
Robert Phillips155dd712018-03-29 17:20:46 -0400364class SK_API GrContextThreadSafeProxy : public SkRefCnt {
Robert Phillips8def8bf2017-11-30 08:46:03 -0500365public:
Brian Salomon103d6f62018-05-11 11:19:22 -0400366 ~GrContextThreadSafeProxy();
367
Robert Phillips8def8bf2017-11-30 08:46:03 -0500368 bool matches(GrContext* context) const { return context->uniqueID() == fContextUniqueID; }
369
Robert Phillipsfc711a22018-02-13 17:03:00 -0500370 /**
371 * Create a surface characterization for a DDL that will be replayed into the GrContext
372 * that created this proxy. On failure the resulting characterization will be invalid (i.e.,
373 * "!c.isValid()").
374 *
375 * @param cacheMaxResourceBytes The max resource bytes limit that will be in effect when the
376 * DDL created with this characterization is replayed.
377 * Note: the contract here is that the DDL will be created as
378 * if it had a full 'cacheMaxResourceBytes' to use. If replayed
379 * into a GrContext that already has locked GPU memory, the
380 * replay can exceed the budget. To rephrase, all resource
381 * allocation decisions are made at record time and at playback
382 * time the budget limits will be ignored.
383 * @param ii The image info specifying properties of the SkSurface that
384 * the DDL created with this characterization will be replayed
385 * into.
386 * Note: Ganesh doesn't make use of the SkImageInfo's alphaType
387 * @param backendFormat Information about the format of the GPU surface that will
388 * back the SkSurface upon replay
389 * @param sampleCount The sample count of the SkSurface that the DDL created with
390 * this characterization will be replayed into
391 * @param origin The origin of the SkSurface that the DDL created with this
392 * characterization will be replayed into
393 * @param surfaceProps The surface properties of the SkSurface that the DDL created
394 * with this characterization will be replayed into
395 * @param isMipMapped Will the surface the DDL will be replayed into have space
396 * allocated for mipmaps?
Greg Daniela070ed72018-04-26 16:31:38 -0400397 * @param willUseGLFBO0 Will the surface the DDL will be replayed into be backed by GL
398 * FBO 0. This flag is only valid if using an GL backend.
Robert Phillipsfc711a22018-02-13 17:03:00 -0500399 */
400 SkSurfaceCharacterization createCharacterization(
401 size_t cacheMaxResourceBytes,
402 const SkImageInfo& ii, const GrBackendFormat& backendFormat,
403 int sampleCount, GrSurfaceOrigin origin,
404 const SkSurfaceProps& surfaceProps,
Greg Daniela070ed72018-04-26 16:31:38 -0400405 bool isMipMapped, bool willUseGLFBO0 = false);
Robert Phillipsfc711a22018-02-13 17:03:00 -0500406
Brian Salomon52aacd62018-05-10 12:57:17 -0400407 bool operator==(const GrContextThreadSafeProxy& that) const {
408 // Each GrContext should only ever have a single thread-safe proxy.
409 SkASSERT((this == &that) == (fContextUniqueID == that.fContextUniqueID));
410 return this == &that;
411 }
412
413 bool operator!=(const GrContextThreadSafeProxy& that) const { return !(*this == that); }
414
415 // Provides access to functions that aren't part of the public API.
416 GrContextThreadSafeProxyPriv priv();
417 const GrContextThreadSafeProxyPriv priv() const;
Robert Phillips94458ee2018-03-06 13:41:51 -0500418
bsalomon41b952c2016-03-11 06:46:33 -0800419private:
Robert Phillipse42edcc2017-12-13 11:50:22 -0500420 // DDL TODO: need to add unit tests for backend & maybe options
421 GrContextThreadSafeProxy(sk_sp<const GrCaps> caps,
422 uint32_t uniqueID,
Greg Danielbdf12ad2018-10-12 09:31:11 -0400423 GrBackendApi backend,
Ethan Nicholas00543112018-07-31 09:44:36 -0400424 const GrContextOptions& options,
425 sk_sp<GrSkSLFPFactoryCache> cache);
bsalomon41b952c2016-03-11 06:46:33 -0800426
Ethan Nicholas00543112018-07-31 09:44:36 -0400427 sk_sp<const GrCaps> fCaps;
428 const uint32_t fContextUniqueID;
Greg Danielbdf12ad2018-10-12 09:31:11 -0400429 const GrBackendApi fBackend;
Ethan Nicholas00543112018-07-31 09:44:36 -0400430 const GrContextOptions fOptions;
431 sk_sp<GrSkSLFPFactoryCache> fFPFactoryCache;
bsalomon41b952c2016-03-11 06:46:33 -0800432
Robert Phillipsfde6fa02018-03-02 08:53:14 -0500433 friend class GrDirectContext; // To construct this object
Brian Salomon52aacd62018-05-10 12:57:17 -0400434 friend class GrContextThreadSafeProxyPriv;
bsalomon41b952c2016-03-11 06:46:33 -0800435
436 typedef SkRefCnt INHERITED;
437};
438
bsalomon@google.com27847de2011-02-22 20:59:41 +0000439#endif