blob: 14db3e6eda9225ddafc7691cfd109dd7dfb99d4b [file] [log] [blame]
bsalomond309e7a2015-04-30 14:18:54 -07001/*
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
cdalton397536c2016-03-25 12:15:03 -070011#include "GrBuffer.h"
Greg Daniel77b53f62016-10-18 11:48:51 -040012#include "GrGpu.h"
bsalomon706f08f2015-05-22 07:35:58 -070013#include "GrPathRange.h"
bsalomond309e7a2015-04-30 14:18:54 -070014
Greg Danielbcf612b2017-05-01 13:50:58 +000015class GrBackendRenderTarget;
bsalomon706f08f2015-05-22 07:35:58 -070016class GrPath;
egdanielec00d942015-09-14 12:56:10 -070017class GrRenderTarget;
joshualitt6d0872d2016-01-11 08:27:48 -080018class GrSingleOwner;
egdanielec00d942015-09-14 12:56:10 -070019class GrStencilAttachment;
bsalomon6663acf2016-05-10 09:14:17 -070020class GrStyle;
bsalomon706f08f2015-05-22 07:35:58 -070021class SkDescriptor;
22class SkPath;
23class SkTypeface;
bsalomoned0bcad2015-05-04 10:36:42 -070024
bsalomond309e7a2015-04-30 14:18:54 -070025/**
Brian Osman32342f02017-03-04 08:12:46 -050026 * A factory for arbitrary resource types. This class is intended for use within the Gr code base.
bsalomoneae62002015-07-31 13:59:30 -070027 *
Brian Osman32342f02017-03-04 08:12:46 -050028 * Some members force callers to make a flags (pendingIO) decision. This can be relaxed once
29 * https://bug.skia.org/4156 is fixed.
bsalomond309e7a2015-04-30 14:18:54 -070030 */
Brian Osman32342f02017-03-04 08:12:46 -050031class GrResourceProvider {
bsalomond309e7a2015-04-30 14:18:54 -070032public:
joshualitt6d0872d2016-01-11 08:27:48 -080033 GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* owner);
bsalomoned0bcad2015-05-04 10:36:42 -070034
35 template <typename T> T* findAndRefTByUniqueKey(const GrUniqueKey& key) {
36 return static_cast<T*>(this->findAndRefResourceByUniqueKey(key));
37 }
38
Brian Osman32342f02017-03-04 08:12:46 -050039 ///////////////////////////////////////////////////////////////////////////
40 // Textures
41
42 /**
43 * Creates a new texture in the resource cache and returns it. The caller owns a
44 * ref on the returned texture which must be balanced by a call to unref.
45 *
46 * @param desc Description of the texture properties.
47 * @param budgeted Does the texture count against the resource cache budget?
48 * @param texels A contiguous array of mipmap levels
49 * @param mipLevelCount The amount of elements in the texels array
50 */
Robert Phillipse78b7252017-04-06 07:59:41 -040051 sk_sp<GrTextureProxy> createMipMappedTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted,
52 const GrMipLevel* texels, int mipLevelCount,
Robert Phillipse78b7252017-04-06 07:59:41 -040053 SkDestinationSurfaceColorMode mipColorMode =
Robert Phillipsa4c41b32017-03-15 13:02:45 -040054 SkDestinationSurfaceColorMode::kLegacy);
Brian Osman32342f02017-03-04 08:12:46 -050055
Brian Osman32342f02017-03-04 08:12:46 -050056 /** 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 Phillipsd3749482017-03-14 09:17:43 -040058 void assignUniqueKeyToProxy(const GrUniqueKey& key, GrTextureProxy*);
59
Robert Phillips3798c862017-03-27 11:08:16 -040060 /** Finds a texture by unique key. If the texture is found it is ref'ed and returned. */
Robert Phillipsd3749482017-03-14 09:17:43 -040061 sk_sp<GrTextureProxy> findProxyByUniqueKey(const GrUniqueKey& key);
62
Brian Osman32342f02017-03-04 08:12:46 -050063 /**
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 Phillipse78b7252017-04-06 07:59:41 -040072 /** Create an exact fit texture with no initial data to upload.
73 */
Robert Phillips45fdae12017-04-17 12:57:27 -040074 sk_sp<GrTexture> createTexture(const GrSurfaceDesc&, SkBudgeted, uint32_t flags = 0);
75
76 sk_sp<GrTextureProxy> createTextureProxy(const GrSurfaceDesc&, SkBudgeted, const GrMipLevel&);
Robert Phillipse78b7252017-04-06 07:59:41 -040077
Brian Osman32342f02017-03-04 08:12:46 -050078 ///////////////////////////////////////////////////////////////////////////
79 // Wrapped Backend Surfaces
80
81 /**
82 * Wraps an existing texture with a GrTexture object.
83 *
84 * OpenGL: if the object is a texture Gr may change its GL texture params
85 * when it is drawn.
86 *
87 * @return GrTexture object or NULL on failure.
88 */
Greg Daniel7ef28f32017-04-20 16:41:55 +000089 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture& tex,
90 GrSurfaceOrigin origin,
91 GrBackendTextureFlags flags,
92 int sampleCnt,
Brian Osman32342f02017-03-04 08:12:46 -050093 GrWrapOwnership = kBorrow_GrWrapOwnership);
94
95 /**
96 * Wraps an existing render target with a GrRenderTarget object. It is
97 * similar to wrapBackendTexture but can be used to draw into surfaces
98 * that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that
99 * the client will resolve to a texture). Currently wrapped render targets
100 * always use the kBorrow_GrWrapOwnership semantics.
101 *
102 * @return GrRenderTarget object or NULL on failure.
103 */
Greg Danielbcf612b2017-05-01 13:50:58 +0000104 sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&, GrSurfaceOrigin);
Brian Osman32342f02017-03-04 08:12:46 -0500105
106 static const int kMinScratchTextureSize;
107
bsalomoned0bcad2015-05-04 10:36:42 -0700108 /**
Chris Daltonff926502017-05-03 14:36:54 -0400109 * Either finds and refs, or creates an index buffer with a repeating pattern for drawing
110 * contiguous vertices of a repeated mesh. If the return is non-null, the caller owns a ref on
111 * the returned GrBuffer.
bsalomoned0bcad2015-05-04 10:36:42 -0700112 *
113 * @param pattern the pattern of indices to repeat
114 * @param patternSize size in bytes of the pattern
115 * @param reps number of times to repeat the pattern
116 * @param vertCount number of vertices the pattern references
117 * @param key Key to be assigned to the index buffer.
118 *
halcanary96fcdcc2015-08-27 07:41:13 -0700119 * @return The index buffer if successful, otherwise nullptr.
bsalomoned0bcad2015-05-04 10:36:42 -0700120 */
Chris Daltonff926502017-05-03 14:36:54 -0400121 const GrBuffer* findOrCreatePatternedIndexBuffer(const uint16_t* pattern,
cdalton397536c2016-03-25 12:15:03 -0700122 int patternSize,
123 int reps,
124 int vertCount,
125 const GrUniqueKey& key) {
126 if (GrBuffer* buffer = this->findAndRefTByUniqueKey<GrBuffer>(key)) {
bsalomoned0bcad2015-05-04 10:36:42 -0700127 return buffer;
128 }
Chris Daltonff926502017-05-03 14:36:54 -0400129 return this->createPatternedIndexBuffer(pattern, patternSize, reps, vertCount, key);
bsalomoned0bcad2015-05-04 10:36:42 -0700130 }
131
132 /**
133 * Returns an index buffer that can be used to render quads.
134 * Six indices per quad: 0, 1, 2, 0, 2, 3, etc.
cdalton397536c2016-03-25 12:15:03 -0700135 * The max number of quads is the buffer's index capacity divided by 6.
bsalomoned0bcad2015-05-04 10:36:42 -0700136 * Draw with kTriangles_GrPrimitiveType
137 * @ return the quad index buffer
138 */
cdalton397536c2016-03-25 12:15:03 -0700139 const GrBuffer* refQuadIndexBuffer() {
140 if (GrBuffer* buffer =
141 this->findAndRefTByUniqueKey<GrBuffer>(fQuadIndexBufferKey)) {
bsalomoned0bcad2015-05-04 10:36:42 -0700142 return buffer;
143 }
144 return this->createQuadIndexBuffer();
145 }
146
bsalomon706f08f2015-05-22 07:35:58 -0700147 /**
148 * Factories for GrPath and GrPathRange objects. It's an error to call these if path rendering
149 * is not supported.
150 */
bsalomon6663acf2016-05-10 09:14:17 -0700151 GrPath* createPath(const SkPath&, const GrStyle&);
152 GrPathRange* createPathRange(GrPathRange::PathGenerator*, const GrStyle&);
reeda9322c22016-04-12 06:47:05 -0700153 GrPathRange* createGlyphs(const SkTypeface*, const SkScalerContextEffects&,
bsalomon6663acf2016-05-10 09:14:17 -0700154 const SkDescriptor*, const GrStyle&);
bsalomon706f08f2015-05-22 07:35:58 -0700155
Brian Osman32342f02017-03-04 08:12:46 -0500156 /** These flags govern which scratch resources we are allowed to return */
bsalomoneae62002015-07-31 13:59:30 -0700157 enum Flags {
Brian Osman32342f02017-03-04 08:12:46 -0500158 kExact_Flag = 0x1,
159
bsalomoneae62002015-07-31 13:59:30 -0700160 /** If the caller intends to do direct reads/writes to/from the CPU then this flag must be
Robert Phillipsf2361d22016-10-25 14:20:06 -0400161 * set when accessing resources during a GrOpList flush. This includes the execution of
Brian Salomon25a88092016-12-01 09:36:50 -0500162 * GrOp objects. The reason is that these memory operations are done immediately and
bsalomoneae62002015-07-31 13:59:30 -0700163 * will occur out of order WRT the operations being flushed.
halcanary6950de62015-11-07 05:29:00 -0800164 * Make this automatic: https://bug.skia.org/4156
bsalomoneae62002015-07-31 13:59:30 -0700165 */
Brian Osman32342f02017-03-04 08:12:46 -0500166 kNoPendingIO_Flag = 0x2,
167
168 kNoCreate_Flag = 0x4,
csmartdalton485a1202016-07-13 10:16:32 -0700169
170 /** Normally the caps may indicate a preference for client-side buffers. Set this flag when
171 * creating a buffer to guarantee it resides in GPU memory.
172 */
Brian Osman32342f02017-03-04 08:12:46 -0500173 kRequireGpuMemory_Flag = 0x8,
bsalomoneae62002015-07-31 13:59:30 -0700174 };
175
cdaltone2e71c22016-04-07 18:13:29 -0700176 /**
177 * Returns a buffer.
178 *
179 * @param size minimum size of buffer to return.
180 * @param intendedType hint to the graphics subsystem about what the buffer will be used for.
181 * @param GrAccessPattern hint to the graphics subsystem about how the data will be accessed.
182 * @param flags see Flags enum.
cdalton1bf3e712016-04-19 10:00:02 -0700183 * @param data optional data with which to initialize the buffer.
cdaltone2e71c22016-04-07 18:13:29 -0700184 *
185 * @return the buffer if successful, otherwise nullptr.
186 */
cdalton1bf3e712016-04-19 10:00:02 -0700187 GrBuffer* createBuffer(size_t size, GrBufferType intendedType, GrAccessPattern, uint32_t flags,
188 const void* data = nullptr);
bsalomoneae62002015-07-31 13:59:30 -0700189
robertphillips1b8e1b52015-06-24 06:54:10 -0700190
Brian Salomon2ee084e2016-12-16 18:59:19 -0500191 /**
egdanielec00d942015-09-14 12:56:10 -0700192 * If passed in render target already has a stencil buffer, return it. Otherwise attempt to
193 * attach one.
194 */
195 GrStencilAttachment* attachStencilAttachment(GrRenderTarget* rt);
196
ericrkf7b8b8a2016-02-24 14:49:51 -0800197 /**
198 * Wraps an existing texture with a GrRenderTarget object. This is useful when the provided
199 * texture has a format that cannot be textured from by Skia, but we want to raster to it.
200 *
kkinnunen49c4c222016-04-01 04:50:37 -0700201 * The texture is wrapped as borrowed. The texture object will not be freed once the
202 * render target is destroyed.
203 *
ericrkf7b8b8a2016-02-24 14:49:51 -0800204 * @return GrRenderTarget object or NULL on failure.
205 */
Greg Daniel7ef28f32017-04-20 16:41:55 +0000206 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
207 GrSurfaceOrigin origin,
208 int sampleCnt);
ericrkf7b8b8a2016-02-24 14:49:51 -0800209
Brian Osman32342f02017-03-04 08:12:46 -0500210 /**
211 * Assigns a unique key to a resource. If the key is associated with another resource that
212 * association is removed and replaced by this resource.
213 */
214 void assignUniqueKeyToResource(const GrUniqueKey&, GrGpuResource*);
215
216 /**
217 * Finds a resource in the cache, based on the specified key. This is intended for use in
218 * conjunction with addResourceToCache(). The return value will be NULL if not found. The
219 * caller must balance with a call to unref().
220 */
221 GrGpuResource* findAndRefResourceByUniqueKey(const GrUniqueKey&);
222
Greg Danield85f97d2017-03-07 13:37:21 -0500223 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore();
224
225 // Takes the GrSemaphore and sets the ownership of the semaphore to the GrGpu object used by
226 // this class. This call is only used when passing a GrSemaphore from one context to another.
227 void takeOwnershipOfSemaphore(sk_sp<GrSemaphore>);
228 // Takes the GrSemaphore and resets the ownership of the semaphore so that it is not owned by
229 // any GrGpu. A follow up call to takeOwnershipofSemaphore must be made so that the underlying
230 // semaphore can be deleted. This call is only used when passing a GrSemaphore from one context
231 // to another.
232 void releaseOwnershipOfSemaphore(sk_sp<GrSemaphore>);
233
Brian Osman32342f02017-03-04 08:12:46 -0500234 void abandon() {
Robert Phillips26c90e02017-03-14 14:39:29 -0400235 fCache = nullptr;
236 fGpu = nullptr;
Brian Osman32342f02017-03-04 08:12:46 -0500237 }
238
Robert Phillipsf7a72612017-03-31 10:03:45 -0400239 // 'proxy' is about to be used as a texture src or drawn to. This query can be used to
240 // determine if it is going to need a texture domain or a full clear.
241 static bool IsFunctionallyExact(GrSurfaceProxy* proxy);
Robert Phillipsb66b42f2017-03-14 08:53:02 -0400242
Robert Phillips26c90e02017-03-14 14:39:29 -0400243 const GrCaps* caps() const { return fCaps.get(); }
244
bsalomoned0bcad2015-05-04 10:36:42 -0700245private:
Robert Phillips3798c862017-03-27 11:08:16 -0400246 GrTexture* findAndRefTextureByUniqueKey(const GrUniqueKey& key);
247 void assignUniqueKeyToTexture(const GrUniqueKey& key, GrTexture* texture) {
248 SkASSERT(key.isValid());
249 this->assignUniqueKeyToResource(key, texture);
250 }
251
Brian Osman32342f02017-03-04 08:12:46 -0500252 GrTexture* refScratchTexture(const GrSurfaceDesc&, uint32_t scratchTextureFlags);
253
Robert Phillips45fdae12017-04-17 12:57:27 -0400254 /*
255 * Try to find an existing scratch texture that exactly matches 'desc'. If successful
256 * update the budgeting accordingly.
257 */
258 sk_sp<GrTexture> getExactScratch(const GrSurfaceDesc&, SkBudgeted, uint32_t flags);
259
Brian Osman32342f02017-03-04 08:12:46 -0500260 GrResourceCache* cache() { return fCache; }
261 const GrResourceCache* cache() const { return fCache; }
262
263 GrGpu* gpu() { return fGpu; }
264 const GrGpu* gpu() const { return fGpu; }
265
266 bool isAbandoned() const {
267 SkASSERT(SkToBool(fGpu) == SkToBool(fCache));
268 return !SkToBool(fCache);
269 }
270
Chris Daltonff926502017-05-03 14:36:54 -0400271 const GrBuffer* createPatternedIndexBuffer(const uint16_t* pattern,
cdalton397536c2016-03-25 12:15:03 -0700272 int patternSize,
273 int reps,
274 int vertCount,
275 const GrUniqueKey& key);
bsalomoned0bcad2015-05-04 10:36:42 -0700276
cdalton397536c2016-03-25 12:15:03 -0700277 const GrBuffer* createQuadIndexBuffer();
bsalomoned0bcad2015-05-04 10:36:42 -0700278
Robert Phillips26c90e02017-03-14 14:39:29 -0400279 GrResourceCache* fCache;
280 GrGpu* fGpu;
281 sk_sp<const GrCaps> fCaps;
282 GrUniqueKey fQuadIndexBufferKey;
bsalomoned0bcad2015-05-04 10:36:42 -0700283
Brian Osman32342f02017-03-04 08:12:46 -0500284 // In debug builds we guard against improper thread handling
285 SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;)
bsalomond309e7a2015-04-30 14:18:54 -0700286};
287
288#endif