bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * 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.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef GrContext_DEFINED |
| 9 | #define GrContext_DEFINED |
| 10 | |
robertphillips | caef345 | 2015-11-11 13:18:11 -0800 | [diff] [blame] | 11 | #include "GrCaps.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 12 | #include "GrColor.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 13 | #include "SkMatrix.h" |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 14 | #include "SkPathEffect.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 15 | #include "SkTypes.h" |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 16 | #include "../private/GrAuditTrail.h" |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 17 | #include "../private/GrSingleOwner.h" |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 18 | |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 19 | class GrAtlasGlyphCache; |
Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 20 | class GrBackendSemaphore; |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 21 | struct GrContextOptions; |
robertphillips | 4fd74ae | 2016-08-03 14:26:53 -0700 | [diff] [blame] | 22 | class GrContextPriv; |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 23 | class GrContextThreadSafeProxy; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 24 | class GrDrawingManager; |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 25 | struct GrDrawOpAtlasConfig; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 26 | class GrFragmentProcessor; |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 27 | struct GrGLInterface; |
bsalomon@google.com | 05ef510 | 2011-05-02 21:14:59 +0000 | [diff] [blame] | 28 | class GrGpu; |
bsalomon@google.com | 583a1e3 | 2011-08-17 13:42:46 +0000 | [diff] [blame] | 29 | class GrIndexBuffer; |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 30 | struct GrMockOptions; |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 31 | class GrOvalRenderer; |
commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 32 | class GrPath; |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 33 | class GrRenderTargetContext; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 34 | class GrResourceEntry; |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 35 | class GrResourceCache; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 36 | class GrResourceProvider; |
Mike Reed | 84dd857 | 2017-03-08 22:21:00 -0500 | [diff] [blame] | 37 | class GrSamplerParams; |
Robert Phillips | 7ee385e | 2017-03-30 08:02:11 -0400 | [diff] [blame] | 38 | class GrSurfaceProxy; |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 39 | class GrTextBlobCache; |
kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 40 | class GrTextContext; |
Mike Reed | 84dd857 | 2017-03-08 22:21:00 -0500 | [diff] [blame] | 41 | class GrTextureProxy; |
bsalomon@google.com | 583a1e3 | 2011-08-17 13:42:46 +0000 | [diff] [blame] | 42 | class GrVertexBuffer; |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 43 | struct GrVkBackendContext; |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 44 | class GrSwizzle; |
ericrk | 0a5fa48 | 2015-09-15 14:16:10 -0700 | [diff] [blame] | 45 | class SkTraceMemoryDump; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 46 | |
Mike Reed | 84dd857 | 2017-03-08 22:21:00 -0500 | [diff] [blame] | 47 | class SkImage; |
| 48 | class SkSurfaceProps; |
Brian Osman | 5127998 | 2017-08-23 10:12:00 -0400 | [diff] [blame] | 49 | class SkTaskGroup; |
Mike Reed | 84dd857 | 2017-03-08 22:21:00 -0500 | [diff] [blame] | 50 | |
commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 51 | class SK_API GrContext : public SkRefCnt { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 52 | public: |
| 53 | /** |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 54 | * Creates a GrContext for a backend context. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 55 | */ |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 56 | static GrContext* Create(GrBackend, GrBackendContext, const GrContextOptions& options); |
| 57 | static GrContext* Create(GrBackend, GrBackendContext); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 58 | |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 59 | static sk_sp<GrContext> MakeGL(const GrGLInterface*, const GrContextOptions&); |
| 60 | static sk_sp<GrContext> MakeGL(const GrGLInterface*); |
| 61 | |
| 62 | #ifdef SK_VULKAN |
| 63 | static sk_sp<GrContext> MakeVulkan(const GrVkBackendContext*, const GrContextOptions&); |
| 64 | static sk_sp<GrContext> MakeVulkan(const GrVkBackendContext*); |
| 65 | #endif |
| 66 | |
Greg Daniel | b76a72a | 2017-07-13 15:07:54 -0400 | [diff] [blame] | 67 | #ifdef SK_METAL |
| 68 | /** |
| 69 | * Makes a GrContext which uses Metal as the backend. The device parameter is an MTLDevice |
| 70 | * and queue is an MTLCommandQueue which should be used by the backend. These objects must |
| 71 | * have a ref on them which can be transferred to Ganesh which will release the ref when the |
| 72 | * GrContext is destroyed. |
| 73 | */ |
| 74 | static sk_sp<GrContext> MakeMetal(void* device, void* queue, const GrContextOptions& options); |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 75 | static sk_sp<GrContext> MakeMetal(void* device, void* queue); |
Greg Daniel | b76a72a | 2017-07-13 15:07:54 -0400 | [diff] [blame] | 76 | #endif |
| 77 | |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 78 | static sk_sp<GrContext> MakeMock(const GrMockOptions*, const GrContextOptions&); |
| 79 | static sk_sp<GrContext> MakeMock(const GrMockOptions*); |
| 80 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 81 | virtual ~GrContext(); |
| 82 | |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 83 | sk_sp<GrContextThreadSafeProxy> threadSafeProxy(); |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 84 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 85 | /** |
| 86 | * The GrContext normally assumes that no outsider is setting state |
| 87 | * within the underlying 3D API's context/device/whatever. This call informs |
| 88 | * the context that the state was modified and it should resend. Shouldn't |
| 89 | * be called frequently for good performance. |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 90 | * The flag bits, state, is dpendent on which backend is used by the |
| 91 | * context, either GL or D3D (possible in future). |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 92 | */ |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 93 | void resetContext(uint32_t state = kAll_GrBackendState); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 94 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 95 | /** |
robertphillips@google.com | cdb426d | 2012-09-24 19:33:59 +0000 | [diff] [blame] | 96 | * Callback function to allow classes to cleanup on GrContext destruction. |
| 97 | * The 'info' field is filled in with the 'info' passed to addCleanUp. |
| 98 | */ |
| 99 | typedef void (*PFCleanUpFunc)(const GrContext* context, void* info); |
| 100 | |
| 101 | /** |
| 102 | * Add a function to be called from within GrContext's destructor. |
| 103 | * This gives classes a chance to free resources held on a per context basis. |
| 104 | * The 'info' parameter will be stored and passed to the callback function. |
| 105 | */ |
| 106 | void addCleanUp(PFCleanUpFunc cleanUp, void* info) { |
| 107 | CleanUpData* entry = fCleanUpData.push(); |
| 108 | |
| 109 | entry->fFunc = cleanUp; |
| 110 | entry->fInfo = info; |
| 111 | } |
| 112 | |
| 113 | /** |
bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 114 | * Abandons all GPU resources and assumes the underlying backend 3D API context is not longer |
| 115 | * usable. Call this if you have lost the associated GPU context, and thus internal texture, |
| 116 | * buffer, etc. references/IDs are now invalid. Calling this ensures that the destructors of the |
| 117 | * GrContext and any of its created resource objects will not make backend 3D API calls. Content |
| 118 | * rendered but not previously flushed may be lost. After this function is called all subsequent |
| 119 | * calls on the GrContext will fail or be no-ops. |
| 120 | * |
| 121 | * The typical use case for this function is that the underlying 3D context was lost and further |
| 122 | * API calls may crash. |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 123 | */ |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 124 | void abandonContext(); |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 125 | |
bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 126 | /** |
| 127 | * This is similar to abandonContext() however the underlying 3D context is not yet lost and |
| 128 | * the GrContext will cleanup all allocated resources before returning. After returning it will |
| 129 | * assume that the underlying context may no longer be valid. |
| 130 | * |
| 131 | * The typical use case for this function is that the client is going to destroy the 3D context |
| 132 | * but can't guarantee that GrContext will be destroyed first (perhaps because it may be ref'ed |
| 133 | * elsewhere by either the client or Skia objects). |
| 134 | */ |
| 135 | void releaseResourcesAndAbandonContext(); |
| 136 | |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 137 | /////////////////////////////////////////////////////////////////////////// |
| 138 | // Resource Cache |
| 139 | |
| 140 | /** |
| 141 | * Return the current GPU resource cache limits. |
| 142 | * |
| 143 | * @param maxResources If non-null, returns maximum number of resources that |
| 144 | * can be held in the cache. |
| 145 | * @param maxResourceBytes If non-null, returns maximum number of bytes of |
| 146 | * video memory that can be held in the cache. |
| 147 | */ |
| 148 | void getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const; |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 149 | |
| 150 | /** |
| 151 | * Gets the current GPU resource cache usage. |
| 152 | * |
| 153 | * @param resourceCount If non-null, returns the number of resources that are held in the |
| 154 | * cache. |
| 155 | * @param maxResourceBytes If non-null, returns the total number of bytes of video memory held |
| 156 | * in the cache. |
| 157 | */ |
| 158 | void getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const; |
| 159 | |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 160 | /** |
Derek Sollenberger | ee47914 | 2017-05-24 11:41:33 -0400 | [diff] [blame] | 161 | * Gets the number of bytes in the cache consumed by purgeable (e.g. unlocked) resources. |
| 162 | */ |
| 163 | size_t getResourceCachePurgeableBytes() const; |
| 164 | |
| 165 | /** |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 166 | * Specify the GPU resource cache limits. If the current cache exceeds either |
| 167 | * of these, it will be purged (LRU) to keep the cache within these limits. |
| 168 | * |
| 169 | * @param maxResources The maximum number of resources that can be held in |
| 170 | * the cache. |
| 171 | * @param maxResourceBytes The maximum number of bytes of video memory |
| 172 | * that can be held in the cache. |
| 173 | */ |
| 174 | void setResourceCacheLimits(int maxResources, size_t maxResourceBytes); |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 175 | |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 176 | /** |
bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 177 | * Frees GPU created by the context. Can be called to reduce GPU memory |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 178 | * pressure. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 179 | */ |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 180 | void freeGpuResources(); |
| 181 | |
bsalomon@google.com | 07fc0d1 | 2012-06-22 15:15:59 +0000 | [diff] [blame] | 182 | /** |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 183 | * Purge all the unlocked resources from the cache. |
| 184 | * This entry point is mainly meant for timing texture uploads |
| 185 | * and is not defined in normal builds of Skia. |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 186 | */ |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 187 | void purgeAllUnlockedResources(); |
| 188 | |
Brian Salomon | 5e15085 | 2017-03-22 14:53:13 -0400 | [diff] [blame] | 189 | /** |
| 190 | * Purge GPU resources that haven't been used in the past 'ms' milliseconds, regardless of |
| 191 | * whether the context is currently under budget. |
| 192 | */ |
| 193 | void purgeResourcesNotUsedInMs(std::chrono::milliseconds ms); |
| 194 | |
Derek Sollenberger | 5480a18 | 2017-05-25 16:43:59 -0400 | [diff] [blame] | 195 | /** |
| 196 | * Purge unlocked resources from the cache until the the provided byte count has been reached |
| 197 | * or we have purged all unlocked resources. The default policy is to purge in LRU order, but |
| 198 | * can be overridden to prefer purging scratch resources (in LRU order) prior to purging other |
| 199 | * resource types. |
| 200 | * |
| 201 | * @param maxBytesToPurge the desired number of bytes to be purged. |
| 202 | * @param preferScratchResources If true scratch resources will be purged prior to other |
| 203 | * resource types. |
| 204 | */ |
| 205 | void purgeUnlockedResources(size_t bytesToPurge, bool preferScratchResources); |
| 206 | |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 207 | /** Access the context capabilities */ |
| 208 | const GrCaps* caps() const { return fCaps; } |
bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 209 | |
commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 210 | /** |
| 211 | * Returns the recommended sample count for a render target when using this |
| 212 | * context. |
| 213 | * |
| 214 | * @param config the configuration of the render target. |
| 215 | * @param dpi the display density in dots per inch. |
| 216 | * |
| 217 | * @return sample count that should be perform well and have good enough |
| 218 | * rendering quality for the display. Alternatively returns 0 if |
| 219 | * MSAA is not supported or recommended to be used by default. |
| 220 | */ |
| 221 | int getRecommendedSampleCount(GrPixelConfig config, SkScalar dpi) const; |
| 222 | |
Robert Phillips | dd3b3f4 | 2017-04-24 10:57:28 -0400 | [diff] [blame] | 223 | /* |
| 224 | * Create a new render target context backed by a deferred-style |
| 225 | * GrRenderTargetProxy. We guarantee that "asTextureProxy" will succeed for |
| 226 | * renderTargetContexts created via this entry point. |
robertphillips | d4c741e | 2016-04-28 09:55:15 -0700 | [diff] [blame] | 227 | */ |
Robert Phillips | 2af746c | 2017-04-21 12:28:48 +0000 | [diff] [blame] | 228 | sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContext( |
Robert Phillips | dd3b3f4 | 2017-04-24 10:57:28 -0400 | [diff] [blame] | 229 | SkBackingFit fit, |
Robert Phillips | 2af746c | 2017-04-21 12:28:48 +0000 | [diff] [blame] | 230 | int width, int height, |
| 231 | GrPixelConfig config, |
| 232 | sk_sp<SkColorSpace> colorSpace, |
| 233 | int sampleCnt = 0, |
| 234 | GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin, |
| 235 | const SkSurfaceProps* surfaceProps = nullptr, |
| 236 | SkBudgeted = SkBudgeted::kYes); |
robertphillips | 48fde9c | 2016-09-06 05:20:20 -0700 | [diff] [blame] | 237 | /* |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 238 | * This method will attempt to create a renderTargetContext that has, at least, the number of |
robertphillips | 48fde9c | 2016-09-06 05:20:20 -0700 | [diff] [blame] | 239 | * channels and precision per channel as requested in 'config' (e.g., A8 and 888 can be |
| 240 | * converted to 8888). It may also swizzle the channels (e.g., BGRA -> RGBA). |
| 241 | * SRGB-ness will be preserved. |
| 242 | */ |
robertphillips | d728f0c | 2016-11-21 11:05:03 -0800 | [diff] [blame] | 243 | sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContextWithFallback( |
| 244 | SkBackingFit fit, |
| 245 | int width, int height, |
| 246 | GrPixelConfig config, |
| 247 | sk_sp<SkColorSpace> colorSpace, |
| 248 | int sampleCnt = 0, |
Robert Phillips | 40fd7c9 | 2017-01-30 08:06:27 -0500 | [diff] [blame] | 249 | GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin, |
robertphillips | d728f0c | 2016-11-21 11:05:03 -0800 | [diff] [blame] | 250 | const SkSurfaceProps* surfaceProps = nullptr, |
| 251 | SkBudgeted budgeted = SkBudgeted::kYes); |
| 252 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 253 | /////////////////////////////////////////////////////////////////////////// |
| 254 | // Misc. |
| 255 | |
| 256 | /** |
Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 257 | * Call to ensure all drawing to the context has been issued to the underlying 3D API. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 258 | */ |
bsalomon | b77a907 | 2016-09-07 10:02:04 -0700 | [diff] [blame] | 259 | void flush(); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 260 | |
senorblanco@chromium.org | 027de5f | 2011-07-08 18:03:33 +0000 | [diff] [blame] | 261 | /** |
Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 262 | * Call to ensure all drawing to the context has been issued to the underlying 3D API. After |
| 263 | * issuing all commands, numSemaphore semaphores will be signaled by the gpu. The client passes |
| 264 | * in an array of numSemaphores GrBackendSemaphores. In general these GrBackendSemaphore's can |
| 265 | * be either initialized or not. If they are initialized, the backend uses the passed in |
| 266 | * semaphore. If it is not initialized, a new semaphore is created and the GrBackendSemaphore |
| 267 | * object is initialized with that semaphore. |
| 268 | * |
| 269 | * The client will own and be responsible for deleting the underlying semaphores that are stored |
| 270 | * and returned in initialized GrBackendSemaphore objects. The GrBackendSemaphore objects |
| 271 | * themselves can be deleted as soon as this function returns. |
| 272 | * |
| 273 | * If the backend API is OpenGL only uninitialized GrBackendSemaphores are supported. |
| 274 | * If the backend API is Vulkan either initialized or unitialized semaphores are supported. |
| 275 | * If unitialized, the semaphores which are created will be valid for use only with the VkDevice |
| 276 | * with which they were created. |
| 277 | * |
| 278 | * If this call returns GrSemaphoresSubmited::kNo, the GPU backend will not have created or |
| 279 | * added any semaphores to signal on the GPU. Thus the client should not have the GPU wait on |
| 280 | * any of the semaphores. However, any pending commands to the context will still be flushed. |
| 281 | */ |
| 282 | GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, |
| 283 | GrBackendSemaphore signalSemaphores[]); |
| 284 | |
| 285 | /** |
joshualitt | 0acd0d3 | 2015-05-07 08:23:19 -0700 | [diff] [blame] | 286 | * An ID associated with this context, guaranteed to be unique. |
| 287 | */ |
| 288 | uint32_t uniqueID() { return fUniqueID; } |
| 289 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 290 | /////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 291 | // Functions intended for internal use only. |
| 292 | GrGpu* getGpu() { return fGpu; } |
bsalomon@google.com | 1f221a7 | 2011-08-23 20:54:07 +0000 | [diff] [blame] | 293 | const GrGpu* getGpu() const { return fGpu; } |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 294 | GrAtlasGlyphCache* getAtlasGlyphCache() { return fAtlasGlyphCache; } |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 295 | GrTextBlobCache* getTextBlobCache() { return fTextBlobCache.get(); } |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 296 | bool abandoned() const; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 297 | GrResourceProvider* resourceProvider() { return fResourceProvider; } |
| 298 | const GrResourceProvider* resourceProvider() const { return fResourceProvider; } |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 299 | GrResourceCache* getResourceCache() { return fResourceCache; } |
bsalomon@google.com | 9923c2b | 2012-06-06 18:21:18 +0000 | [diff] [blame] | 300 | |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 301 | /** Reset GPU stats */ |
| 302 | void resetGpuStats() const ; |
| 303 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 304 | /** Prints cache stats to the string if GR_CACHE_STATS == 1. */ |
| 305 | void dumpCacheStats(SkString*) const; |
joshualitt | dc5685a | 2015-12-02 14:08:25 -0800 | [diff] [blame] | 306 | void dumpCacheStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 307 | void printCacheStats() const; |
robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 308 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 309 | /** Prints GPU stats to the string if GR_GPU_STATS == 1. */ |
| 310 | void dumpGpuStats(SkString*) const; |
joshualitt | dc5685a | 2015-12-02 14:08:25 -0800 | [diff] [blame] | 311 | void dumpGpuStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 312 | void printGpuStats() const; |
robertphillips | 754f4e9 | 2014-09-18 13:52:08 -0700 | [diff] [blame] | 313 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 314 | /** Returns a string with detailed information about the context & GPU, in JSON format. */ |
| 315 | SkString dump() const; |
| 316 | |
joshualitt | 17d833b | 2015-08-03 10:17:44 -0700 | [diff] [blame] | 317 | /** Specify the TextBlob cache limit. If the current cache exceeds this limit it will purge. |
| 318 | this is for testing only */ |
| 319 | void setTextBlobCacheLimit_ForTesting(size_t bytes); |
| 320 | |
joshualitt | da04e0e | 2015-08-19 08:16:43 -0700 | [diff] [blame] | 321 | /** Specify the sizes of the GrAtlasTextContext atlases. The configs pointer below should be |
| 322 | to an array of 3 entries */ |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 323 | void setTextContextAtlasSizes_ForTesting(const GrDrawOpAtlasConfig* configs); |
joshualitt | da04e0e | 2015-08-19 08:16:43 -0700 | [diff] [blame] | 324 | |
ericrk | 0a5fa48 | 2015-09-15 14:16:10 -0700 | [diff] [blame] | 325 | /** Enumerates all cached GPU resources and dumps their memory to traceMemoryDump. */ |
| 326 | void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const; |
| 327 | |
Robert Phillips | 33667da | 2016-12-20 11:05:30 -0500 | [diff] [blame] | 328 | /** Get pointer to atlas texture for given mask format. Note that this wraps an |
| 329 | actively mutating texture in an SkImage. This could yield unexpected results |
| 330 | if it gets cached or used more generally. */ |
Robert Phillips | c37e614 | 2017-01-20 10:03:25 -0500 | [diff] [blame] | 331 | sk_sp<SkImage> getFontAtlasImage_ForTesting(GrMaskFormat format); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 332 | |
joshualitt | 5651ee6 | 2016-01-11 10:39:11 -0800 | [diff] [blame] | 333 | GrAuditTrail* getAuditTrail() { return &fAuditTrail; } |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 334 | |
joshualitt | ce89400 | 2016-01-11 13:29:31 -0800 | [diff] [blame] | 335 | /** This is only useful for debug purposes */ |
| 336 | SkDEBUGCODE(GrSingleOwner* debugSingleOwner() const { return &fSingleOwner; } ) |
| 337 | |
robertphillips | 4fd74ae | 2016-08-03 14:26:53 -0700 | [diff] [blame] | 338 | // Provides access to functions that aren't part of the public API. |
| 339 | GrContextPriv contextPriv(); |
| 340 | const GrContextPriv contextPriv() const; |
| 341 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 342 | private: |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 343 | GrGpu* fGpu; |
| 344 | const GrCaps* fCaps; |
| 345 | GrResourceCache* fResourceCache; |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 346 | GrResourceProvider* fResourceProvider; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 347 | |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 348 | sk_sp<GrContextThreadSafeProxy> fThreadSafeProxy; |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 349 | |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 350 | GrAtlasGlyphCache* fAtlasGlyphCache; |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 351 | std::unique_ptr<GrTextBlobCache> fTextBlobCache; |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 352 | |
Brian Osman | 46da1cc | 2017-02-14 14:15:48 -0500 | [diff] [blame] | 353 | bool fDisableGpuYUVConversion; |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 354 | bool fDidTestPMConversions; |
Brian Osman | 28804f3 | 2017-04-20 10:24:36 -0400 | [diff] [blame] | 355 | // true if the PM/UPM conversion succeeded; false otherwise |
| 356 | bool fPMUPMConversionsRoundTrip; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 357 | |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 358 | // In debug builds we guard against improper thread handling |
joshualitt | de8dc7e | 2016-01-08 10:09:13 -0800 | [diff] [blame] | 359 | // This guard is passed to the GrDrawingManager and, from there to all the |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 360 | // GrRenderTargetContexts. It is also passed to the GrResourceProvider and SkGpuDevice. |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 361 | mutable GrSingleOwner fSingleOwner; |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 362 | |
Brian Osman | 5127998 | 2017-08-23 10:12:00 -0400 | [diff] [blame] | 363 | std::unique_ptr<SkTaskGroup> fTaskGroup; |
| 364 | |
robertphillips@google.com | cdb426d | 2012-09-24 19:33:59 +0000 | [diff] [blame] | 365 | struct CleanUpData { |
| 366 | PFCleanUpFunc fFunc; |
| 367 | void* fInfo; |
| 368 | }; |
| 369 | |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 370 | SkTDArray<CleanUpData> fCleanUpData; |
robertphillips@google.com | 44a91dc | 2013-07-25 15:32:06 +0000 | [diff] [blame] | 371 | |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 372 | const uint32_t fUniqueID; |
krajcevski | 9c6d4d7 | 2014-08-12 07:26:25 -0700 | [diff] [blame] | 373 | |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 374 | std::unique_ptr<GrDrawingManager> fDrawingManager; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 375 | |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 376 | GrAuditTrail fAuditTrail; |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 377 | |
Greg Daniel | fc978fd | 2017-04-13 09:54:12 -0400 | [diff] [blame] | 378 | GrBackend fBackend; |
| 379 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 380 | // TODO: have the GrClipStackClip use renderTargetContexts and rm this friending |
robertphillips | 4fd74ae | 2016-08-03 14:26:53 -0700 | [diff] [blame] | 381 | friend class GrContextPriv; |
csmartdalton | c6f411e | 2016-08-05 22:32:12 -0700 | [diff] [blame] | 382 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 383 | GrContext(); // init must be called after the constructor. |
| 384 | bool init(GrBackend, GrBackendContext, const GrContextOptions& options); |
Greg Daniel | b76a72a | 2017-07-13 15:07:54 -0400 | [diff] [blame] | 385 | bool init(const GrContextOptions& options); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 386 | |
skia.committer@gmail.com | cdcb2ce | 2013-01-29 07:05:52 +0000 | [diff] [blame] | 387 | /** |
Brian Osman | 409e74f | 2017-04-17 11:48:28 -0400 | [diff] [blame] | 388 | * These functions create premul <-> unpremul effects. If the second argument is 'true', they |
| 389 | * use the specialized round-trip effects from GrConfigConversionEffect, otherwise they |
| 390 | * create effects that do naive multiply or divide. |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 391 | */ |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 392 | std::unique_ptr<GrFragmentProcessor> createPMToUPMEffect(std::unique_ptr<GrFragmentProcessor>, |
| 393 | bool useConfigConversionEffect); |
| 394 | std::unique_ptr<GrFragmentProcessor> createUPMToPMEffect(std::unique_ptr<GrFragmentProcessor>, |
| 395 | bool useConfigConversionEffect); |
Brian Osman | 409e74f | 2017-04-17 11:48:28 -0400 | [diff] [blame] | 396 | |
| 397 | /** |
| 398 | * Returns true if createPMtoUPMEffect and createUPMToPMEffect will succeed for non-sRGB 8888 |
| 399 | * configs. In other words, did we find a pair of round-trip preserving conversion effects? |
| 400 | */ |
| 401 | bool validPMUPMConversionExists(); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 402 | |
commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 403 | /** |
joshualitt | 0db6dfa | 2015-04-10 07:01:30 -0700 | [diff] [blame] | 404 | * A callback similar to the above for use by the TextBlobCache |
| 405 | * TODO move textblob draw calls below context so we can use the call above. |
| 406 | */ |
| 407 | static void TextBlobCacheOverBudgetCB(void* data); |
| 408 | |
commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 409 | typedef SkRefCnt INHERITED; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 410 | }; |
| 411 | |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 412 | /** |
| 413 | * Can be used to perform actions related to the generating GrContext in a thread safe manner. The |
| 414 | * proxy does not access the 3D API (e.g. OpenGL) that backs the generating GrContext. |
| 415 | */ |
| 416 | class GrContextThreadSafeProxy : public SkRefCnt { |
| 417 | private: |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 418 | GrContextThreadSafeProxy(sk_sp<const GrCaps> caps, uint32_t uniqueID) |
| 419 | : fCaps(std::move(caps)) |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 420 | , fContextUniqueID(uniqueID) {} |
| 421 | |
bungeman | 6bd5284 | 2016-10-27 09:30:08 -0700 | [diff] [blame] | 422 | sk_sp<const GrCaps> fCaps; |
| 423 | uint32_t fContextUniqueID; |
bsalomon | 41b952c | 2016-03-11 06:46:33 -0800 | [diff] [blame] | 424 | |
| 425 | friend class GrContext; |
| 426 | friend class SkImage; |
| 427 | |
| 428 | typedef SkRefCnt INHERITED; |
| 429 | }; |
| 430 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 431 | #endif |