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" |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 12 | #include "GrClip.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 13 | #include "GrColor.h" |
bsalomon@google.com | 288d954 | 2012-10-17 12:53:54 +0000 | [diff] [blame] | 14 | #include "GrPaint.h" |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 15 | #include "GrRenderTarget.h" |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 16 | #include "GrTextureProvider.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 17 | #include "SkMatrix.h" |
egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 18 | #include "SkPathEffect.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 19 | #include "SkTypes.h" |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 20 | #include "../private/GrAuditTrail.h" |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 21 | #include "../private/GrSingleOwner.h" |
| 22 | #include "../private/SkMutex.h" |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 23 | |
joshualitt | da04e0e | 2015-08-19 08:16:43 -0700 | [diff] [blame] | 24 | struct GrBatchAtlasConfig; |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 25 | class GrBatchFontCache; |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 26 | struct GrContextOptions; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 27 | class GrDrawingManager; |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 28 | class GrDrawContext; |
bsalomon@google.com | 583a1e3 | 2011-08-17 13:42:46 +0000 | [diff] [blame] | 29 | class GrDrawTarget; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 30 | class GrFragmentProcessor; |
bsalomon@google.com | 05ef510 | 2011-05-02 21:14:59 +0000 | [diff] [blame] | 31 | class GrGpu; |
bsalomon@google.com | 583a1e3 | 2011-08-17 13:42:46 +0000 | [diff] [blame] | 32 | class GrIndexBuffer; |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 33 | class GrLayerCache; |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 34 | class GrOvalRenderer; |
commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 35 | class GrPath; |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 36 | class GrPipelineBuilder; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 37 | class GrResourceEntry; |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 38 | class GrResourceCache; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 39 | class GrResourceProvider; |
commit-bot@chromium.org | 78a1078 | 2013-08-21 19:27:48 +0000 | [diff] [blame] | 40 | class GrTestTarget; |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 41 | class GrTextBlobCache; |
kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 42 | class GrTextContext; |
bsalomon@google.com | 288d954 | 2012-10-17 12:53:54 +0000 | [diff] [blame] | 43 | class GrTextureParams; |
bsalomon@google.com | 583a1e3 | 2011-08-17 13:42:46 +0000 | [diff] [blame] | 44 | class GrVertexBuffer; |
egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 45 | class GrStrokeInfo; |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 46 | class GrSwizzle; |
ericrk | 0a5fa48 | 2015-09-15 14:16:10 -0700 | [diff] [blame] | 47 | class SkTraceMemoryDump; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 48 | |
commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 49 | class SK_API GrContext : public SkRefCnt { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 50 | public: |
| 51 | /** |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 52 | * Creates a GrContext for a backend context. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 53 | */ |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 54 | static GrContext* Create(GrBackend, GrBackendContext, const GrContextOptions& options); |
| 55 | static GrContext* Create(GrBackend, GrBackendContext); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 56 | |
bsalomon | 3343557 | 2014-11-05 14:47:41 -0800 | [diff] [blame] | 57 | /** |
| 58 | * Only defined in test apps. |
| 59 | */ |
| 60 | static GrContext* CreateMockContext(); |
| 61 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 62 | virtual ~GrContext(); |
| 63 | |
| 64 | /** |
| 65 | * The GrContext normally assumes that no outsider is setting state |
| 66 | * within the underlying 3D API's context/device/whatever. This call informs |
| 67 | * the context that the state was modified and it should resend. Shouldn't |
| 68 | * be called frequently for good performance. |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 69 | * The flag bits, state, is dpendent on which backend is used by the |
| 70 | * context, either GL or D3D (possible in future). |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 71 | */ |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 72 | void resetContext(uint32_t state = kAll_GrBackendState); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 73 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 74 | /** |
robertphillips@google.com | cdb426d | 2012-09-24 19:33:59 +0000 | [diff] [blame] | 75 | * Callback function to allow classes to cleanup on GrContext destruction. |
| 76 | * The 'info' field is filled in with the 'info' passed to addCleanUp. |
| 77 | */ |
| 78 | typedef void (*PFCleanUpFunc)(const GrContext* context, void* info); |
| 79 | |
| 80 | /** |
| 81 | * Add a function to be called from within GrContext's destructor. |
| 82 | * This gives classes a chance to free resources held on a per context basis. |
| 83 | * The 'info' parameter will be stored and passed to the callback function. |
| 84 | */ |
| 85 | void addCleanUp(PFCleanUpFunc cleanUp, void* info) { |
| 86 | CleanUpData* entry = fCleanUpData.push(); |
| 87 | |
| 88 | entry->fFunc = cleanUp; |
| 89 | entry->fInfo = info; |
| 90 | } |
| 91 | |
| 92 | /** |
mtklein | 2766c00 | 2015-06-26 11:45:03 -0700 | [diff] [blame] | 93 | * Abandons all GPU resources and assumes the underlying backend 3D API |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 94 | * context is not longer usable. Call this if you have lost the associated |
| 95 | * GPU context, and thus internal texture, buffer, etc. references/IDs are |
| 96 | * now invalid. Should be called even when GrContext is no longer going to |
| 97 | * be used for two reasons: |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 98 | * 1) ~GrContext will not try to free the objects in the 3D API. |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 99 | * 2) Any GrGpuResources created by this GrContext that outlive |
| 100 | * will be marked as invalid (GrGpuResource::wasDestroyed()) and |
| 101 | * when they're destroyed no 3D API calls will be made. |
| 102 | * Content drawn since the last GrContext::flush() may be lost. After this |
| 103 | * function is called the only valid action on the GrContext or |
| 104 | * GrGpuResources it created is to destroy them. |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 105 | */ |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 106 | void abandonContext(); |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 107 | |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 108 | /////////////////////////////////////////////////////////////////////////// |
| 109 | // Resource Cache |
| 110 | |
| 111 | /** |
| 112 | * Return the current GPU resource cache limits. |
| 113 | * |
| 114 | * @param maxResources If non-null, returns maximum number of resources that |
| 115 | * can be held in the cache. |
| 116 | * @param maxResourceBytes If non-null, returns maximum number of bytes of |
| 117 | * video memory that can be held in the cache. |
| 118 | */ |
| 119 | void getResourceCacheLimits(int* maxResources, size_t* maxResourceBytes) const; |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 120 | |
| 121 | /** |
| 122 | * Gets the current GPU resource cache usage. |
| 123 | * |
| 124 | * @param resourceCount If non-null, returns the number of resources that are held in the |
| 125 | * cache. |
| 126 | * @param maxResourceBytes If non-null, returns the total number of bytes of video memory held |
| 127 | * in the cache. |
| 128 | */ |
| 129 | void getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const; |
| 130 | |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 131 | /** |
| 132 | * Specify the GPU resource cache limits. If the current cache exceeds either |
| 133 | * of these, it will be purged (LRU) to keep the cache within these limits. |
| 134 | * |
| 135 | * @param maxResources The maximum number of resources that can be held in |
| 136 | * the cache. |
| 137 | * @param maxResourceBytes The maximum number of bytes of video memory |
| 138 | * that can be held in the cache. |
| 139 | */ |
| 140 | void setResourceCacheLimits(int maxResources, size_t maxResourceBytes); |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 141 | |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 142 | GrTextureProvider* textureProvider() { return fTextureProvider; } |
| 143 | const GrTextureProvider* textureProvider() const { return fTextureProvider; } |
| 144 | |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 145 | /** |
bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 146 | * 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] | 147 | * pressure. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 148 | */ |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 149 | void freeGpuResources(); |
| 150 | |
bsalomon@google.com | 07fc0d1 | 2012-06-22 15:15:59 +0000 | [diff] [blame] | 151 | /** |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 152 | * Purge all the unlocked resources from the cache. |
| 153 | * This entry point is mainly meant for timing texture uploads |
| 154 | * and is not defined in normal builds of Skia. |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 155 | */ |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 156 | void purgeAllUnlockedResources(); |
| 157 | |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 158 | /** Access the context capabilities */ |
| 159 | const GrCaps* caps() const { return fCaps; } |
bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 160 | |
commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 161 | /** |
| 162 | * Returns the recommended sample count for a render target when using this |
| 163 | * context. |
| 164 | * |
| 165 | * @param config the configuration of the render target. |
| 166 | * @param dpi the display density in dots per inch. |
| 167 | * |
| 168 | * @return sample count that should be perform well and have good enough |
| 169 | * rendering quality for the display. Alternatively returns 0 if |
| 170 | * MSAA is not supported or recommended to be used by default. |
| 171 | */ |
| 172 | int getRecommendedSampleCount(GrPixelConfig config, SkScalar dpi) const; |
| 173 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 174 | /** |
mtklein | 2766c00 | 2015-06-26 11:45:03 -0700 | [diff] [blame] | 175 | * Returns a helper object to orchestrate draws. |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 176 | * Callers assume the creation ref of the drawContext |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 177 | * NULL will be returned if the context has been abandoned. |
| 178 | * |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 179 | * @param rt the render target receiving the draws |
robertphillips | 31dc1b2 | 2015-07-07 10:05:18 -0700 | [diff] [blame] | 180 | * @param surfaceProps the surface properties (mainly defines text drawing) |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 181 | * |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 182 | * @return a draw context |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 183 | */ |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 184 | GrDrawContext* drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps = NULL); |
robertphillips | a106c62 | 2015-10-16 09:07:06 -0700 | [diff] [blame] | 185 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 186 | /////////////////////////////////////////////////////////////////////////// |
| 187 | // Misc. |
| 188 | |
| 189 | /** |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 190 | * Flags that affect flush() behavior. |
| 191 | */ |
| 192 | enum FlushBits { |
| 193 | /** |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 194 | * A client may reach a point where it has partially rendered a frame |
| 195 | * through a GrContext that it knows the user will never see. This flag |
| 196 | * causes the flush to skip submission of deferred content to the 3D API |
| 197 | * during the flush. |
| 198 | */ |
| 199 | kDiscard_FlushBit = 0x2, |
| 200 | }; |
| 201 | |
| 202 | /** |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 203 | * Call to ensure all drawing to the context has been issued to the |
| 204 | * underlying 3D API. |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 205 | * @param flagsBitfield flags that control the flushing behavior. See |
| 206 | * FlushBits. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 207 | */ |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 208 | void flush(int flagsBitfield = 0); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 209 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 210 | void flushIfNecessary() { |
robertphillips | caef345 | 2015-11-11 13:18:11 -0800 | [diff] [blame] | 211 | if (fFlushToReduceCacheSize || this->caps()->immediateFlush()) { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 212 | this->flush(); |
mtklein | 2766c00 | 2015-06-26 11:45:03 -0700 | [diff] [blame] | 213 | } |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 214 | } |
| 215 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 216 | /** |
| 217 | * These flags can be used with the read/write pixels functions below. |
| 218 | */ |
| 219 | enum PixelOpsFlags { |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 220 | /** The GrContext will not be flushed before the surface read or write. This means that |
| 221 | the read or write may occur before previous draws have executed. */ |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 222 | kDontFlush_PixelOpsFlag = 0x1, |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 223 | /** Any surface writes should be flushed to the backend 3D API after the surface operation |
| 224 | is complete */ |
| 225 | kFlushWrites_PixelOp = 0x2, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 226 | /** The src for write or dst read is unpremultiplied. This is only respected if both the |
| 227 | config src and dst configs are an RGBA/BGRA 8888 format. */ |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 228 | kUnpremul_PixelOpsFlag = 0x4, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 229 | }; |
| 230 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 231 | /** |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 232 | * Reads a rectangle of pixels from a surface. |
| 233 | * @param surface the surface to read from. |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 234 | * @param left left edge of the rectangle to read (inclusive) |
| 235 | * @param top top edge of the rectangle to read (inclusive) |
| 236 | * @param width width of rectangle to read in pixels. |
| 237 | * @param height height of rectangle to read in pixels. |
| 238 | * @param config the pixel config of the destination buffer |
| 239 | * @param buffer memory to read the rectangle into. |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 240 | * @param rowBytes number of bytes bewtween consecutive rows. Zero means rows are tightly |
| 241 | * packed. |
| 242 | * @param pixelOpsFlags see PixelOpsFlags enum above. |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 243 | * |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 244 | * @return true if the read succeeded, false if not. The read can fail because of an unsupported |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 245 | * pixel configs |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 246 | */ |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 247 | bool readSurfacePixels(GrSurface* surface, |
| 248 | int left, int top, int width, int height, |
| 249 | GrPixelConfig config, void* buffer, |
| 250 | size_t rowBytes = 0, |
| 251 | uint32_t pixelOpsFlags = 0); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 252 | |
| 253 | /** |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 254 | * Writes a rectangle of pixels to a surface. |
| 255 | * @param surface the surface to write to. |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 256 | * @param left left edge of the rectangle to write (inclusive) |
| 257 | * @param top top edge of the rectangle to write (inclusive) |
| 258 | * @param width width of rectangle to write in pixels. |
| 259 | * @param height height of rectangle to write in pixels. |
| 260 | * @param config the pixel config of the source buffer |
| 261 | * @param buffer memory to read pixels from |
bsalomon@google.com | 3cbaa2d | 2012-10-12 14:51:52 +0000 | [diff] [blame] | 262 | * @param rowBytes number of bytes between consecutive rows. Zero |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 263 | * means rows are tightly packed. |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 264 | * @param pixelOpsFlags see PixelOpsFlags enum above. |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 265 | * @return true if the write succeeded, false if not. The write can fail because of an |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 266 | * unsupported combination of surface and src configs. |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 267 | */ |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 268 | bool writeSurfacePixels(GrSurface* surface, |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 269 | int left, int top, int width, int height, |
| 270 | GrPixelConfig config, const void* buffer, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 271 | size_t rowBytes, |
| 272 | uint32_t pixelOpsFlags = 0); |
| 273 | |
senorblanco@chromium.org | 027de5f | 2011-07-08 18:03:33 +0000 | [diff] [blame] | 274 | /** |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 275 | * Copies a rectangle of texels from src to dst. |
scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 276 | * bounds. |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 277 | * @param dst the surface to copy to. |
| 278 | * @param src the surface to copy from. |
| 279 | * @param srcRect the rectangle of the src that should be copied. |
| 280 | * @param dstPoint the translation applied when writing the srcRect's pixels to the dst. |
| 281 | * @param pixelOpsFlags see PixelOpsFlags enum above. (kUnpremul_PixelOpsFlag is not allowed). |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 282 | */ |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 283 | void copySurface(GrSurface* dst, |
| 284 | GrSurface* src, |
| 285 | const SkIRect& srcRect, |
| 286 | const SkIPoint& dstPoint, |
| 287 | uint32_t pixelOpsFlags = 0); |
| 288 | |
| 289 | /** Helper that copies the whole surface but fails when the two surfaces are not identically |
| 290 | sized. */ |
| 291 | bool copySurface(GrSurface* dst, GrSurface* src) { |
| 292 | if (NULL == dst || NULL == src || dst->width() != src->width() || |
| 293 | dst->height() != src->height()) { |
| 294 | return false; |
| 295 | } |
| 296 | this->copySurface(dst, src, SkIRect::MakeWH(dst->width(), dst->height()), |
| 297 | SkIPoint::Make(0,0)); |
| 298 | return true; |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * After this returns any pending writes to the surface will have been issued to the backend 3D API. |
| 303 | */ |
| 304 | void flushSurfaceWrites(GrSurface* surface); |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 305 | |
| 306 | /** |
bsalomon | c49e868 | 2015-06-30 11:37:35 -0700 | [diff] [blame] | 307 | * Finalizes all pending reads and writes to the surface and also performs an MSAA resolve |
| 308 | * if necessary. |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 309 | * |
bsalomon | 87a94eb | 2014-11-03 14:28:32 -0800 | [diff] [blame] | 310 | * It is not necessary to call this before reading the render target via Skia/GrContext. |
| 311 | * GrContext will detect when it must perform a resolve before reading pixels back from the |
| 312 | * surface or using it as a texture. |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 313 | */ |
bsalomon | c49e868 | 2015-06-30 11:37:35 -0700 | [diff] [blame] | 314 | void prepareSurfaceForExternalIO(GrSurface*); |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 315 | |
| 316 | /** |
joshualitt | 0acd0d3 | 2015-05-07 08:23:19 -0700 | [diff] [blame] | 317 | * An ID associated with this context, guaranteed to be unique. |
| 318 | */ |
| 319 | uint32_t uniqueID() { return fUniqueID; } |
| 320 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 321 | /////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 322 | // Functions intended for internal use only. |
| 323 | GrGpu* getGpu() { return fGpu; } |
bsalomon@google.com | 1f221a7 | 2011-08-23 20:54:07 +0000 | [diff] [blame] | 324 | const GrGpu* getGpu() const { return fGpu; } |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 325 | GrBatchFontCache* getBatchFontCache() { return fBatchFontCache; } |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 326 | GrLayerCache* getLayerCache() { return fLayerCache.get(); } |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 327 | GrTextBlobCache* getTextBlobCache() { return fTextBlobCache; } |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 328 | bool abandoned() const; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 329 | GrResourceProvider* resourceProvider() { return fResourceProvider; } |
| 330 | const GrResourceProvider* resourceProvider() const { return fResourceProvider; } |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 331 | GrResourceCache* getResourceCache() { return fResourceCache; } |
bsalomon@google.com | 9923c2b | 2012-06-06 18:21:18 +0000 | [diff] [blame] | 332 | |
commit-bot@chromium.org | 78a1078 | 2013-08-21 19:27:48 +0000 | [diff] [blame] | 333 | // Called by tests that draw directly to the context via GrDrawTarget |
robertphillips | 504ce5d | 2015-11-16 11:02:05 -0800 | [diff] [blame] | 334 | void getTestTarget(GrTestTarget*, GrRenderTarget* rt); |
commit-bot@chromium.org | 78a1078 | 2013-08-21 19:27:48 +0000 | [diff] [blame] | 335 | |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 336 | /** Reset GPU stats */ |
| 337 | void resetGpuStats() const ; |
| 338 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 339 | /** Prints cache stats to the string if GR_CACHE_STATS == 1. */ |
| 340 | void dumpCacheStats(SkString*) const; |
joshualitt | dc5685a | 2015-12-02 14:08:25 -0800 | [diff] [blame] | 341 | void dumpCacheStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 342 | void printCacheStats() const; |
robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 343 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 344 | /** Prints GPU stats to the string if GR_GPU_STATS == 1. */ |
| 345 | void dumpGpuStats(SkString*) const; |
joshualitt | dc5685a | 2015-12-02 14:08:25 -0800 | [diff] [blame] | 346 | void dumpGpuStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 347 | void printGpuStats() const; |
robertphillips | 754f4e9 | 2014-09-18 13:52:08 -0700 | [diff] [blame] | 348 | |
joshualitt | 17d833b | 2015-08-03 10:17:44 -0700 | [diff] [blame] | 349 | /** Specify the TextBlob cache limit. If the current cache exceeds this limit it will purge. |
| 350 | this is for testing only */ |
| 351 | void setTextBlobCacheLimit_ForTesting(size_t bytes); |
| 352 | |
joshualitt | da04e0e | 2015-08-19 08:16:43 -0700 | [diff] [blame] | 353 | /** Specify the sizes of the GrAtlasTextContext atlases. The configs pointer below should be |
| 354 | to an array of 3 entries */ |
| 355 | void setTextContextAtlasSizes_ForTesting(const GrBatchAtlasConfig* configs); |
| 356 | |
ericrk | 0a5fa48 | 2015-09-15 14:16:10 -0700 | [diff] [blame] | 357 | /** Enumerates all cached GPU resources and dumps their memory to traceMemoryDump. */ |
| 358 | void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const; |
| 359 | |
jvanverth | 0671b96 | 2015-12-08 18:53:44 -0800 | [diff] [blame] | 360 | /** Get pointer to atlas texture for given mask format */ |
| 361 | GrTexture* getFontAtlasTexture(GrMaskFormat format); |
jvanverth | 629162d | 2015-11-08 08:07:24 -0800 | [diff] [blame] | 362 | |
joshualitt | 5651ee6 | 2016-01-11 10:39:11 -0800 | [diff] [blame] | 363 | GrAuditTrail* getAuditTrail() { return &fAuditTrail; } |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 364 | |
joshualitt | ce89400 | 2016-01-11 13:29:31 -0800 | [diff] [blame] | 365 | /** This is only useful for debug purposes */ |
| 366 | SkDEBUGCODE(GrSingleOwner* debugSingleOwner() const { return &fSingleOwner; } ) |
| 367 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 368 | private: |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 369 | GrGpu* fGpu; |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 370 | const GrCaps* fCaps; |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 371 | GrResourceCache* fResourceCache; |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 372 | // this union exists because the inheritance of GrTextureProvider->GrResourceProvider |
| 373 | // is in a private header. |
mtklein | 2766c00 | 2015-06-26 11:45:03 -0700 | [diff] [blame] | 374 | union { |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 375 | GrResourceProvider* fResourceProvider; |
| 376 | GrTextureProvider* fTextureProvider; |
| 377 | }; |
| 378 | |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 379 | GrBatchFontCache* fBatchFontCache; |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 380 | SkAutoTDelete<GrLayerCache> fLayerCache; |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 381 | SkAutoTDelete<GrTextBlobCache> fTextBlobCache; |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 382 | |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 383 | // Set by OverbudgetCB() to request that GrContext flush before exiting a draw. |
| 384 | bool fFlushToReduceCacheSize; |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 385 | bool fDidTestPMConversions; |
| 386 | int fPMToUPMConversion; |
| 387 | int fUPMToPMConversion; |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 388 | // The sw backend may call GrContext::readSurfacePixels on multiple threads |
| 389 | // We may transfer the responsibilty for using a mutex to the sw backend |
| 390 | // when there are fewer code paths that lead to a readSurfacePixels call |
| 391 | // from the sw backend. readSurfacePixels is reentrant in one case - when performing |
| 392 | // the PM conversions test. To handle this we do the PM conversions test outside |
| 393 | // of fReadPixelsMutex and use a separate mutex to guard it. When it re-enters |
| 394 | // readSurfacePixels it will grab fReadPixelsMutex and release it before the outer |
| 395 | // readSurfacePixels proceeds to grab it. |
| 396 | // TODO: Stop pretending to make GrContext thread-safe for sw rasterization and provide |
| 397 | // a mechanism to make a SkPicture safe for multithreaded sw rasterization. |
| 398 | SkMutex fReadPixelsMutex; |
| 399 | SkMutex fTestPMConversionsMutex; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 400 | |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 401 | // In debug builds we guard against improper thread handling |
joshualitt | de8dc7e | 2016-01-08 10:09:13 -0800 | [diff] [blame] | 402 | // This guard is passed to the GrDrawingManager and, from there to all the |
| 403 | // GrDrawContexts. It is also passed to the GrTextureProvider and SkGpuDevice. |
| 404 | mutable GrSingleOwner fSingleOwner; |
joshualitt | 1de610a | 2016-01-06 08:26:09 -0800 | [diff] [blame] | 405 | |
robertphillips@google.com | cdb426d | 2012-09-24 19:33:59 +0000 | [diff] [blame] | 406 | struct CleanUpData { |
| 407 | PFCleanUpFunc fFunc; |
| 408 | void* fInfo; |
| 409 | }; |
| 410 | |
robertphillips@google.com | 44a91dc | 2013-07-25 15:32:06 +0000 | [diff] [blame] | 411 | SkTDArray<CleanUpData> fCleanUpData; |
| 412 | |
joshualitt | 0acd0d3 | 2015-05-07 08:23:19 -0700 | [diff] [blame] | 413 | const uint32_t fUniqueID; |
krajcevski | 9c6d4d7 | 2014-08-12 07:26:25 -0700 | [diff] [blame] | 414 | |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 415 | SkAutoTDelete<GrDrawingManager> fDrawingManager; |
| 416 | |
joshualitt | 27a48dc | 2016-01-08 07:19:47 -0800 | [diff] [blame] | 417 | GrAuditTrail fAuditTrail; |
| 418 | |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 419 | // TODO: have the CMM use drawContexts and rm this friending |
| 420 | friend class GrClipMaskManager; // the CMM is friended just so it can call 'drawingManager' |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 421 | friend class GrDrawingManager; // for access to drawingManager for ProgramUnitTest |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 422 | GrDrawingManager* drawingManager() { return fDrawingManager; } |
| 423 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 424 | GrContext(); // init must be called after the constructor. |
| 425 | bool init(GrBackend, GrBackendContext, const GrContextOptions& options); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 426 | |
bsalomon | 3343557 | 2014-11-05 14:47:41 -0800 | [diff] [blame] | 427 | void initMockContext(); |
bsalomon | 69cfe95 | 2015-11-30 13:27:47 -0800 | [diff] [blame] | 428 | void initCommon(const GrContextOptions&); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 429 | |
skia.committer@gmail.com | cdcb2ce | 2013-01-29 07:05:52 +0000 | [diff] [blame] | 430 | /** |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 431 | * These functions create premul <-> unpremul effects if it is possible to generate a pair |
| 432 | * of effects that make a readToUPM->writeToPM->readToUPM cycle invariant. Otherwise, they |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 433 | * return NULL. They also can perform a swizzle as part of the draw. |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 434 | */ |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 435 | const GrFragmentProcessor* createPMToUPMEffect(GrTexture*, const GrSwizzle&, |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 436 | const SkMatrix&) const; |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 437 | const GrFragmentProcessor* createUPMToPMEffect(GrTexture*, const GrSwizzle&, |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 438 | const SkMatrix&) const; |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 439 | /** Called before either of the above two functions to determine the appropriate fragment |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 440 | processors for conversions. This must be called by readSurfacePixels before a mutex is |
| 441 | taken, since testingvPM conversions itself will call readSurfacePixels */ |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 442 | void testPMConversionsIfNecessary(uint32_t flags); |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 443 | /** Returns true if we've already determined that createPMtoUPMEffect and createUPMToPMEffect |
| 444 | will fail. In such cases fall back to SW conversion. */ |
| 445 | bool didFailPMUPMConversionTest() const; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 446 | |
commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 447 | /** |
| 448 | * This callback allows the resource cache to callback into the GrContext |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 449 | * when the cache is still over budget after a purge. |
commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 450 | */ |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 451 | static void OverBudgetCB(void* data); |
commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 452 | |
joshualitt | 0db6dfa | 2015-04-10 07:01:30 -0700 | [diff] [blame] | 453 | /** |
| 454 | * A callback similar to the above for use by the TextBlobCache |
| 455 | * TODO move textblob draw calls below context so we can use the call above. |
| 456 | */ |
| 457 | static void TextBlobCacheOverBudgetCB(void* data); |
| 458 | |
commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 459 | typedef SkRefCnt INHERITED; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 460 | }; |
| 461 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 462 | #endif |