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