bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef GrResourceProvider_DEFINED |
| 9 | #define GrResourceProvider_DEFINED |
| 10 | |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 11 | #include "GrBuffer.h" |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 12 | #include "GrPathRange.h" |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 13 | #include "SkImageInfo.h" |
Robert Phillips | 009e9af | 2017-06-15 14:01:04 -0400 | [diff] [blame] | 14 | #include "SkScalerContext.h" |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 15 | |
Greg Daniel | bcf612b | 2017-05-01 13:50:58 +0000 | [diff] [blame] | 16 | class GrBackendRenderTarget; |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 17 | class GrBackendSemaphore; |
| 18 | class GrBackendTexture; |
Robert Phillips | 009e9af | 2017-06-15 14:01:04 -0400 | [diff] [blame] | 19 | class GrGpu; |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 20 | class GrPath; |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 21 | class GrRenderTarget; |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 22 | class GrSemaphore; |
joshualitt | 6d0872d | 2016-01-11 08:27:48 -0800 | [diff] [blame] | 23 | class GrSingleOwner; |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 24 | class GrStencilAttachment; |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 25 | class GrSurfaceProxy; |
| 26 | class GrTexture; |
| 27 | class GrTextureProxy; |
| 28 | |
bsalomon | 6663acf | 2016-05-10 09:14:17 -0700 | [diff] [blame] | 29 | class GrStyle; |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 30 | class SkDescriptor; |
| 31 | class SkPath; |
| 32 | class SkTypeface; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 33 | |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 34 | /** |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 35 | * A factory for arbitrary resource types. This class is intended for use within the Gr code base. |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 36 | * |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 37 | * Some members force callers to make a flags (pendingIO) decision. This can be relaxed once |
| 38 | * https://bug.skia.org/4156 is fixed. |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 39 | */ |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 40 | class GrResourceProvider { |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 41 | public: |
joshualitt | 6d0872d | 2016-01-11 08:27:48 -0800 | [diff] [blame] | 42 | GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* owner); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 43 | |
| 44 | template <typename T> T* findAndRefTByUniqueKey(const GrUniqueKey& key) { |
| 45 | return static_cast<T*>(this->findAndRefResourceByUniqueKey(key)); |
| 46 | } |
| 47 | |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 48 | /* |
| 49 | * Assigns a unique key to a proxy. The proxy will be findable via this key using |
| 50 | * findProxyByUniqueKey(). It is an error if an existing proxy already has a key. |
| 51 | */ |
| 52 | void assignUniqueKeyToProxy(const GrUniqueKey&, GrTextureProxy*); |
| 53 | |
| 54 | /* |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame^] | 55 | * Removes a unique key from a proxy. If the proxy has already been instantiated, it will |
| 56 | * also remove the unique key from the target GrSurface. |
| 57 | */ |
| 58 | void removeUniqueKeyFromProxy(const GrUniqueKey&, GrTextureProxy*); |
| 59 | |
| 60 | /* |
Robert Phillips | ae7d3f3 | 2017-09-21 08:26:08 -0400 | [diff] [blame] | 61 | * Finds a proxy by unique key. |
| 62 | */ |
| 63 | sk_sp<GrTextureProxy> findProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin); |
| 64 | |
Greg Daniel | cd87140 | 2017-09-26 12:49:26 -0400 | [diff] [blame^] | 65 | /* |
| 66 | * Finds a proxy by unique key or creates a new one that wraps a resource matching the unique |
| 67 | * key. |
| 68 | */ |
| 69 | sk_sp<GrTextureProxy> findOrCreateProxyByUniqueKey(const GrUniqueKey&, GrSurfaceOrigin); |
| 70 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 71 | /////////////////////////////////////////////////////////////////////////// |
| 72 | // Textures |
| 73 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 74 | /** |
| 75 | * Finds a texture that approximately matches the descriptor. Will be at least as large in width |
| 76 | * and height as desc specifies. If desc specifies that the texture should be a render target |
| 77 | * then result will be a render target. Format and sample count will always match the request. |
Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 78 | * The contents of the texture are undefined. |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 79 | */ |
Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 80 | sk_sp<GrTexture> createApproxTexture(const GrSurfaceDesc&, uint32_t flags); |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 81 | |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 82 | /** Create an exact fit texture with no initial data to upload. |
| 83 | */ |
Robert Phillips | 45fdae1 | 2017-04-17 12:57:27 -0400 | [diff] [blame] | 84 | sk_sp<GrTexture> createTexture(const GrSurfaceDesc&, SkBudgeted, uint32_t flags = 0); |
| 85 | |
Robert Phillips | 8e8c755 | 2017-07-10 12:06:05 -0400 | [diff] [blame] | 86 | sk_sp<GrTexture> createTexture(const GrSurfaceDesc&, SkBudgeted, |
Robert Phillips | 590533f | 2017-07-11 14:22:35 -0400 | [diff] [blame] | 87 | const GrMipLevel texels[], int mipLevelCount, |
Robert Phillips | 8e8c755 | 2017-07-10 12:06:05 -0400 | [diff] [blame] | 88 | SkDestinationSurfaceColorMode mipColorMode); |
| 89 | |
Robert Phillips | 45fdae1 | 2017-04-17 12:57:27 -0400 | [diff] [blame] | 90 | sk_sp<GrTextureProxy> createTextureProxy(const GrSurfaceDesc&, SkBudgeted, const GrMipLevel&); |
Robert Phillips | e78b725 | 2017-04-06 07:59:41 -0400 | [diff] [blame] | 91 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 92 | /////////////////////////////////////////////////////////////////////////// |
| 93 | // Wrapped Backend Surfaces |
| 94 | |
| 95 | /** |
| 96 | * Wraps an existing texture with a GrTexture object. |
| 97 | * |
| 98 | * OpenGL: if the object is a texture Gr may change its GL texture params |
| 99 | * when it is drawn. |
| 100 | * |
| 101 | * @return GrTexture object or NULL on failure. |
| 102 | */ |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 103 | sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture& tex, |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 104 | GrWrapOwnership = kBorrow_GrWrapOwnership); |
| 105 | |
| 106 | /** |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 107 | * This makes the backend texture be renderable. If sampleCnt is > 0 and the underlying API |
| 108 | * uses separate MSAA render buffers then a MSAA render buffer is created that resolves |
| 109 | * to the texture. |
| 110 | */ |
| 111 | sk_sp<GrTexture> wrapRenderableBackendTexture(const GrBackendTexture& tex, |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 112 | int sampleCnt, |
| 113 | GrWrapOwnership = kBorrow_GrWrapOwnership); |
| 114 | |
| 115 | /** |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 116 | * Wraps an existing render target with a GrRenderTarget object. It is |
| 117 | * similar to wrapBackendTexture but can be used to draw into surfaces |
| 118 | * that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that |
| 119 | * the client will resolve to a texture). Currently wrapped render targets |
| 120 | * always use the kBorrow_GrWrapOwnership semantics. |
| 121 | * |
| 122 | * @return GrRenderTarget object or NULL on failure. |
| 123 | */ |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 124 | sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&); |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 125 | |
Robert Phillips | 1bfece8 | 2017-06-01 13:56:52 -0400 | [diff] [blame] | 126 | static const uint32_t kMinScratchTextureSize; |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 127 | |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 128 | /** |
Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 129 | * Either finds and refs, or creates an index buffer with a repeating pattern for drawing |
| 130 | * contiguous vertices of a repeated mesh. If the return is non-null, the caller owns a ref on |
| 131 | * the returned GrBuffer. |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 132 | * |
| 133 | * @param pattern the pattern of indices to repeat |
| 134 | * @param patternSize size in bytes of the pattern |
| 135 | * @param reps number of times to repeat the pattern |
| 136 | * @param vertCount number of vertices the pattern references |
| 137 | * @param key Key to be assigned to the index buffer. |
| 138 | * |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 139 | * @return The index buffer if successful, otherwise nullptr. |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 140 | */ |
Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 141 | const GrBuffer* findOrCreatePatternedIndexBuffer(const uint16_t* pattern, |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 142 | int patternSize, |
| 143 | int reps, |
| 144 | int vertCount, |
| 145 | const GrUniqueKey& key) { |
| 146 | if (GrBuffer* buffer = this->findAndRefTByUniqueKey<GrBuffer>(key)) { |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 147 | return buffer; |
| 148 | } |
Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 149 | return this->createPatternedIndexBuffer(pattern, patternSize, reps, vertCount, key); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Returns an index buffer that can be used to render quads. |
| 154 | * Six indices per quad: 0, 1, 2, 0, 2, 3, etc. |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 155 | * The max number of quads is the buffer's index capacity divided by 6. |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 156 | * Draw with GrPrimitiveType::kTriangles |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 157 | * @ return the quad index buffer |
| 158 | */ |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 159 | const GrBuffer* refQuadIndexBuffer() { |
| 160 | if (GrBuffer* buffer = |
| 161 | this->findAndRefTByUniqueKey<GrBuffer>(fQuadIndexBufferKey)) { |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 162 | return buffer; |
| 163 | } |
| 164 | return this->createQuadIndexBuffer(); |
| 165 | } |
| 166 | |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 167 | static int QuadCountOfQuadBuffer(); |
| 168 | |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 169 | /** |
| 170 | * Factories for GrPath and GrPathRange objects. It's an error to call these if path rendering |
| 171 | * is not supported. |
| 172 | */ |
Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 173 | sk_sp<GrPath> createPath(const SkPath&, const GrStyle&); |
| 174 | sk_sp<GrPathRange> createPathRange(GrPathRange::PathGenerator*, const GrStyle&); |
| 175 | sk_sp<GrPathRange> createGlyphs(const SkTypeface*, const SkScalerContextEffects&, |
| 176 | const SkDescriptor*, const GrStyle&); |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 177 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 178 | /** These flags govern which scratch resources we are allowed to return */ |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 179 | enum Flags { |
| 180 | /** If the caller intends to do direct reads/writes to/from the CPU then this flag must be |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 181 | * set when accessing resources during a GrOpList flush. This includes the execution of |
Brian Salomon | 25a8809 | 2016-12-01 09:36:50 -0500 | [diff] [blame] | 182 | * GrOp objects. The reason is that these memory operations are done immediately and |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 183 | * will occur out of order WRT the operations being flushed. |
halcanary | 6950de6 | 2015-11-07 05:29:00 -0800 | [diff] [blame] | 184 | * Make this automatic: https://bug.skia.org/4156 |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 185 | */ |
Greg Daniel | 29bf84f | 2017-09-25 12:25:12 -0400 | [diff] [blame] | 186 | kNoPendingIO_Flag = 0x1, |
Greg Daniel | 2191823 | 2017-09-08 14:46:23 -0400 | [diff] [blame] | 187 | |
csmartdalton | 485a120 | 2016-07-13 10:16:32 -0700 | [diff] [blame] | 188 | /** Normally the caps may indicate a preference for client-side buffers. Set this flag when |
| 189 | * creating a buffer to guarantee it resides in GPU memory. |
| 190 | */ |
Greg Daniel | 29bf84f | 2017-09-25 12:25:12 -0400 | [diff] [blame] | 191 | kRequireGpuMemory_Flag = 0x2, |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 192 | }; |
| 193 | |
cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 194 | /** |
| 195 | * Returns a buffer. |
| 196 | * |
| 197 | * @param size minimum size of buffer to return. |
| 198 | * @param intendedType hint to the graphics subsystem about what the buffer will be used for. |
| 199 | * @param GrAccessPattern hint to the graphics subsystem about how the data will be accessed. |
| 200 | * @param flags see Flags enum. |
cdalton | 1bf3e71 | 2016-04-19 10:00:02 -0700 | [diff] [blame] | 201 | * @param data optional data with which to initialize the buffer. |
cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 202 | * |
| 203 | * @return the buffer if successful, otherwise nullptr. |
| 204 | */ |
cdalton | 1bf3e71 | 2016-04-19 10:00:02 -0700 | [diff] [blame] | 205 | GrBuffer* createBuffer(size_t size, GrBufferType intendedType, GrAccessPattern, uint32_t flags, |
| 206 | const void* data = nullptr); |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 207 | |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 208 | |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 209 | /** |
Robert Phillips | c0192e3 | 2017-09-21 12:00:26 -0400 | [diff] [blame] | 210 | * If passed in render target already has a stencil buffer, return true. Otherwise attempt to |
| 211 | * attach one and return true on success. |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 212 | */ |
Robert Phillips | c0192e3 | 2017-09-21 12:00:26 -0400 | [diff] [blame] | 213 | bool attachStencilAttachment(GrRenderTarget* rt); |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 214 | |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 215 | /** |
| 216 | * Wraps an existing texture with a GrRenderTarget object. This is useful when the provided |
| 217 | * texture has a format that cannot be textured from by Skia, but we want to raster to it. |
| 218 | * |
kkinnunen | 49c4c22 | 2016-04-01 04:50:37 -0700 | [diff] [blame] | 219 | * The texture is wrapped as borrowed. The texture object will not be freed once the |
| 220 | * render target is destroyed. |
| 221 | * |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 222 | * @return GrRenderTarget object or NULL on failure. |
| 223 | */ |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 224 | sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&, |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 225 | int sampleCnt); |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 226 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 227 | /** |
| 228 | * Assigns a unique key to a resource. If the key is associated with another resource that |
| 229 | * association is removed and replaced by this resource. |
| 230 | */ |
| 231 | void assignUniqueKeyToResource(const GrUniqueKey&, GrGpuResource*); |
| 232 | |
| 233 | /** |
| 234 | * Finds a resource in the cache, based on the specified key. This is intended for use in |
| 235 | * conjunction with addResourceToCache(). The return value will be NULL if not found. The |
| 236 | * caller must balance with a call to unref(). |
| 237 | */ |
| 238 | GrGpuResource* findAndRefResourceByUniqueKey(const GrUniqueKey&); |
| 239 | |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 240 | sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true); |
| 241 | |
| 242 | sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore&, |
| 243 | GrWrapOwnership = kBorrow_GrWrapOwnership); |
Greg Daniel | d85f97d | 2017-03-07 13:37:21 -0500 | [diff] [blame] | 244 | |
| 245 | // Takes the GrSemaphore and sets the ownership of the semaphore to the GrGpu object used by |
| 246 | // this class. This call is only used when passing a GrSemaphore from one context to another. |
| 247 | void takeOwnershipOfSemaphore(sk_sp<GrSemaphore>); |
| 248 | // Takes the GrSemaphore and resets the ownership of the semaphore so that it is not owned by |
| 249 | // any GrGpu. A follow up call to takeOwnershipofSemaphore must be made so that the underlying |
| 250 | // semaphore can be deleted. This call is only used when passing a GrSemaphore from one context |
| 251 | // to another. |
| 252 | void releaseOwnershipOfSemaphore(sk_sp<GrSemaphore>); |
| 253 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 254 | void abandon() { |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 255 | fCache = nullptr; |
| 256 | fGpu = nullptr; |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 257 | } |
| 258 | |
Robert Phillips | f7a7261 | 2017-03-31 10:03:45 -0400 | [diff] [blame] | 259 | // 'proxy' is about to be used as a texture src or drawn to. This query can be used to |
| 260 | // determine if it is going to need a texture domain or a full clear. |
| 261 | static bool IsFunctionallyExact(GrSurfaceProxy* proxy); |
Robert Phillips | b66b42f | 2017-03-14 08:53:02 -0400 | [diff] [blame] | 262 | |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 263 | const GrCaps* caps() const { return fCaps.get(); } |
| 264 | |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 265 | private: |
Robert Phillips | 3798c86 | 2017-03-27 11:08:16 -0400 | [diff] [blame] | 266 | GrTexture* findAndRefTextureByUniqueKey(const GrUniqueKey& key); |
Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 267 | void assignUniqueKeyToTexture(const GrUniqueKey& key, GrTexture* texture); |
Robert Phillips | 3798c86 | 2017-03-27 11:08:16 -0400 | [diff] [blame] | 268 | |
Greg Daniel | 29bf84f | 2017-09-25 12:25:12 -0400 | [diff] [blame] | 269 | // Attempts to find a resource in the cache that exactly matches the GrSurfaceDesc. Failing that |
| 270 | // it returns null. If non-null, the resulting texture is always budgeted. |
Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 271 | sk_sp<GrTexture> refScratchTexture(const GrSurfaceDesc&, uint32_t scratchTextureFlags); |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 272 | |
Robert Phillips | 45fdae1 | 2017-04-17 12:57:27 -0400 | [diff] [blame] | 273 | /* |
| 274 | * Try to find an existing scratch texture that exactly matches 'desc'. If successful |
| 275 | * update the budgeting accordingly. |
| 276 | */ |
Greg Daniel | 2191823 | 2017-09-08 14:46:23 -0400 | [diff] [blame] | 277 | sk_sp<GrTexture> getExactScratch(const GrSurfaceDesc&, SkBudgeted, uint32_t flags); |
Robert Phillips | 45fdae1 | 2017-04-17 12:57:27 -0400 | [diff] [blame] | 278 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 279 | GrResourceCache* cache() { return fCache; } |
| 280 | const GrResourceCache* cache() const { return fCache; } |
| 281 | |
| 282 | GrGpu* gpu() { return fGpu; } |
| 283 | const GrGpu* gpu() const { return fGpu; } |
| 284 | |
| 285 | bool isAbandoned() const { |
| 286 | SkASSERT(SkToBool(fGpu) == SkToBool(fCache)); |
| 287 | return !SkToBool(fCache); |
| 288 | } |
| 289 | |
Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 290 | const GrBuffer* createPatternedIndexBuffer(const uint16_t* pattern, |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 291 | int patternSize, |
| 292 | int reps, |
| 293 | int vertCount, |
| 294 | const GrUniqueKey& key); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 295 | |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 296 | const GrBuffer* createQuadIndexBuffer(); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 297 | |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 298 | GrResourceCache* fCache; |
| 299 | GrGpu* fGpu; |
| 300 | sk_sp<const GrCaps> fCaps; |
| 301 | GrUniqueKey fQuadIndexBufferKey; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 302 | |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 303 | // In debug builds we guard against improper thread handling |
| 304 | SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;) |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | #endif |