• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
11 #include "include/gpu/GrContextOptions.h"
12 #include "include/private/SkImageInfoPriv.h"
13 #include "src/core/SkScalerContext.h"
14 #include "src/gpu/GrGpuBuffer.h"
15 #include "src/gpu/GrResourceCache.h"
16 
17 class GrBackendRenderTarget;
18 class GrBackendSemaphore;
19 class GrBackendTexture;
20 class GrGpu;
21 class GrPath;
22 class GrRenderTarget;
23 class GrResourceProviderPriv;
24 class GrSemaphore;
25 class GrSingleOwner;
26 class GrStencilAttachment;
27 class GrTexture;
28 struct GrVkDrawableInfo;
29 
30 class GrStyle;
31 class SkDescriptor;
32 class SkPath;
33 class SkTypeface;
34 
35 /**
36  * A factory for arbitrary resource types.
37  */
38 class GrResourceProvider {
39 public:
40     GrResourceProvider(GrGpu*, GrResourceCache*, GrSingleOwner*);
41 
42     /**
43      * Finds a resource in the cache, based on the specified key. Prior to calling this, the caller
44      * must be sure that if a resource of exists in the cache with the given unique key then it is
45      * of type T.
46      */
47     template <typename T = GrGpuResource>
48     typename std::enable_if<std::is_base_of<GrGpuResource, T>::value, sk_sp<T>>::type
findByUniqueKey(const GrUniqueKey & key)49     findByUniqueKey(const GrUniqueKey& key) {
50         return sk_sp<T>(static_cast<T*>(this->findResourceByUniqueKey(key).release()));
51     }
52 
53     ///////////////////////////////////////////////////////////////////////////
54     // Textures
55 
56     /**
57      * Finds a texture that approximately matches the descriptor. Will be at least as large in width
58      * and height as desc specifies. If renderable is kYes then the GrTexture will also be a
59      * GrRenderTarget. The texture's format and sample count will always match the request.
60      * The contents of the texture are undefined.
61      */
62     sk_sp<GrTexture> createApproxTexture(SkISize dimensions,
63                                          const GrBackendFormat& format,
64                                          GrRenderable renderable,
65                                          int renderTargetSampleCnt,
66                                          GrProtected isProtected);
67 
68     /** Create an exact fit texture with no initial data to upload. */
69     sk_sp<GrTexture> createTexture(SkISize dimensions,
70                                    const GrBackendFormat& format,
71                                    GrRenderable renderable,
72                                    int renderTargetSampleCnt,
73                                    GrMipMapped mipMapped,
74                                    SkBudgeted budgeted,
75                                    GrProtected isProtected);
76 
77     /**
78      * Create an exact fit texture with initial data to upload. The color type must be valid
79      * for the format and also describe the texel data. This will ensure any conversions that
80      * need to get applied to the data before upload are applied.
81      */
82     sk_sp<GrTexture> createTexture(SkISize dimensions,
83                                    const GrBackendFormat& format,
84                                    GrColorType colorType,
85                                    GrRenderable renderable,
86                                    int renderTargetSampleCnt,
87                                    SkBudgeted budgeted,
88                                    GrProtected isProtected,
89                                    const GrMipLevel texels[],
90                                    int mipLevelCount);
91 
92     /**
93      * Create a potentially loose fit texture with the provided data. The color type must be valid
94      * for the format and also describe the texel data. This will ensure any conversions that
95      * need to get applied to the data before upload are applied.
96      */
97     sk_sp<GrTexture> createTexture(SkISize dimensions,
98                                    const GrBackendFormat&,
99                                    GrColorType srcColorType,
100                                    GrRenderable,
101                                    int renderTargetSampleCnt,
102                                    SkBudgeted,
103                                    SkBackingFit,
104                                    GrProtected,
105                                    const GrMipLevel& mipLevel);
106 
107     /**
108      * Creates a compressed texture. The GrGpu must support the SkImageImage::Compression type.
109      * It will not be renderable.
110      */
111     sk_sp<GrTexture> createCompressedTexture(SkISize dimensions,
112                                              const GrBackendFormat&,
113                                              SkBudgeted,
114                                              GrMipMapped,
115                                              GrProtected,
116                                              SkData* data);
117 
118     ///////////////////////////////////////////////////////////////////////////
119     // Wrapped Backend Surfaces
120 
121     /**
122      * Wraps an existing texture with a GrTexture object.
123      *
124      * GrIOType must either be kRead or kRW. kRead blocks any operations that would modify the
125      * pixels (e.g. dst for a copy, regenerating MIP levels, write pixels).
126      *
127      * OpenGL: if the object is a texture Gr may change its GL texture params
128      *         when it is drawn.
129      *
130      * @return GrTexture object or NULL on failure.
131      */
132     sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture& tex, GrColorType, GrWrapOwnership,
133                                         GrWrapCacheable, GrIOType);
134 
135     sk_sp<GrTexture> wrapCompressedBackendTexture(const GrBackendTexture& tex,
136                                                   GrWrapOwnership,
137                                                   GrWrapCacheable);
138 
139     /**
140      * This makes the backend texture be renderable. If sampleCnt is > 1 and the underlying API
141      * uses separate MSAA render buffers then a MSAA render buffer is created that resolves
142      * to the texture.
143      */
144     sk_sp<GrTexture> wrapRenderableBackendTexture(const GrBackendTexture& tex,
145                                                   int sampleCnt,
146                                                   GrColorType,
147                                                   GrWrapOwnership,
148                                                   GrWrapCacheable);
149 
150     /**
151      * Wraps an existing render target with a GrRenderTarget object. It is
152      * similar to wrapBackendTexture but can be used to draw into surfaces
153      * that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that
154      * the client will resolve to a texture). Currently wrapped render targets
155      * always use the kBorrow_GrWrapOwnership and GrWrapCacheable::kNo semantics.
156      *
157      * @return GrRenderTarget object or NULL on failure.
158      */
159     sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&,
160                                                   GrColorType colorType);
161 
162     sk_sp<GrRenderTarget> wrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
163                                                               const GrVkDrawableInfo&);
164 
165     static const int kMinScratchTextureSize;
166 
167     /**
168      * Either finds and refs, or creates a static buffer with the given parameters and contents.
169      *
170      * @param intendedType    hint to the graphics subsystem about what the buffer will be used for.
171      * @param size            minimum size of buffer to return.
172      * @param data            optional data with which to initialize the buffer.
173      * @param key             Key to be assigned to the buffer.
174      *
175      * @return The buffer if successful, otherwise nullptr.
176      */
177     sk_sp<const GrGpuBuffer> findOrMakeStaticBuffer(GrGpuBufferType intendedType, size_t size,
178                                                     const void* data, const GrUniqueKey& key);
179 
180     /**
181      * Either finds and refs, or creates an index buffer with a repeating pattern for drawing
182      * contiguous vertices of a repeated mesh. If the return is non-null, the caller owns a ref on
183      * the returned GrBuffer.
184      *
185      * @param pattern     the pattern of indices to repeat
186      * @param patternSize size in bytes of the pattern
187      * @param reps        number of times to repeat the pattern
188      * @param vertCount   number of vertices the pattern references
189      * @param key         Key to be assigned to the index buffer.
190      *
191      * @return The index buffer if successful, otherwise nullptr.
192      */
findOrCreatePatternedIndexBuffer(const uint16_t * pattern,int patternSize,int reps,int vertCount,const GrUniqueKey & key)193     sk_sp<const GrGpuBuffer> findOrCreatePatternedIndexBuffer(const uint16_t* pattern,
194                                                               int patternSize,
195                                                               int reps,
196                                                               int vertCount,
197                                                               const GrUniqueKey& key) {
198         if (auto buffer = this->findByUniqueKey<const GrGpuBuffer>(key)) {
199             return buffer;
200         }
201         return this->createPatternedIndexBuffer(pattern, patternSize, reps, vertCount, &key);
202     }
203 
204     /**
205      * Returns an index buffer that can be used to render non-antialiased quads.
206      * Each quad consumes 6 indices (0, 1, 2, 2, 1, 3) and 4 vertices.
207      * Call MaxNumNonAAQuads to get the max allowed number of non-AA quads.
208      * Draw with GrPrimitiveType::kTriangles
209      * @ return the non-AA quad index buffer
210      */
refNonAAQuadIndexBuffer()211     sk_sp<const GrGpuBuffer> refNonAAQuadIndexBuffer() {
212         if (!fNonAAQuadIndexBuffer) {
213             fNonAAQuadIndexBuffer = this->createNonAAQuadIndexBuffer();
214         }
215         return fNonAAQuadIndexBuffer;
216     }
217 
218     static int MaxNumNonAAQuads();
219     static int NumVertsPerNonAAQuad();
220     static int NumIndicesPerNonAAQuad();
221 
222     /**
223      * Returns an index buffer that can be used to render antialiased quads.
224      * Each quad consumes 30 indices and 8 vertices.
225      * Call MaxNumAAQuads to get the max allowed number of AA quads.
226      * Draw with GrPrimitiveType::kTriangles
227      * @ return the AA quad index buffer
228      */
refAAQuadIndexBuffer()229     sk_sp<const GrGpuBuffer> refAAQuadIndexBuffer() {
230         if (!fAAQuadIndexBuffer) {
231             fAAQuadIndexBuffer = this->createAAQuadIndexBuffer();
232         }
233         return fAAQuadIndexBuffer;
234     }
235 
236     static int MaxNumAAQuads();
237     static int NumVertsPerAAQuad();
238     static int NumIndicesPerAAQuad();
239 
240     /**
241      * Factories for GrPath objects. It's an error to call these if path rendering
242      * is not supported.
243      */
244     sk_sp<GrPath> createPath(const SkPath&, const GrStyle&);
245 
246     /**
247      * Returns a buffer.
248      *
249      * @param size            minimum size of buffer to return.
250      * @param intendedType    hint to the graphics subsystem about what the buffer will be used for.
251      * @param GrAccessPattern hint to the graphics subsystem about how the data will be accessed.
252      * @param flags           see Flags enum.
253      * @param data            optional data with which to initialize the buffer.
254      *
255      * @return the buffer if successful, otherwise nullptr.
256      */
257     sk_sp<GrGpuBuffer> createBuffer(size_t size, GrGpuBufferType intendedType, GrAccessPattern,
258                                     const void* data = nullptr);
259 
260     /**
261      * If passed in render target already has a stencil buffer with at least "numSamples" samples,
262      * return true. Otherwise attempt to attach one and return true on success.
263      */
264     bool attachStencilAttachment(GrRenderTarget* rt, int numStencilSamples);
265 
266      /**
267       * Wraps an existing texture with a GrRenderTarget object. This is useful when the provided
268       * texture has a format that cannot be textured from by Skia, but we want to raster to it.
269       *
270       * The texture is wrapped as borrowed. The texture object will not be freed once the
271       * render target is destroyed.
272       *
273       * @return GrRenderTarget object or NULL on failure.
274       */
275      sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
276                                                             int sampleCnt,
277                                                             GrColorType);
278 
279     /**
280      * Assigns a unique key to a resource. If the key is associated with another resource that
281      * association is removed and replaced by this resource.
282      */
283     void assignUniqueKeyToResource(const GrUniqueKey&, GrGpuResource*);
284 
285     std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true);
286 
287     enum class SemaphoreWrapType {
288         kWillSignal,
289         kWillWait,
290     };
291 
292     std::unique_ptr<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore&,
293                                                       SemaphoreWrapType wrapType,
294                                                       GrWrapOwnership = kBorrow_GrWrapOwnership);
295 
abandon()296     void abandon() {
297         fCache = nullptr;
298         fGpu = nullptr;
299     }
300 
contextUniqueID()301     uint32_t contextUniqueID() const { return fCache->contextUniqueID(); }
caps()302     const GrCaps* caps() const { return fCaps.get(); }
overBudget()303     bool overBudget() const { return fCache->overBudget(); }
304 
305     static SkISize MakeApprox(SkISize);
306 
307     inline GrResourceProviderPriv priv();
308     inline const GrResourceProviderPriv priv() const;
309 
310 private:
311     sk_sp<GrGpuResource> findResourceByUniqueKey(const GrUniqueKey&);
312 
313     // Attempts to find a resource in the cache that exactly matches the SkISize. Failing that
314     // it returns null. If non-null, the resulting texture is always budgeted.
315     sk_sp<GrTexture> refScratchTexture(SkISize dimensions,
316                                        const GrBackendFormat&,
317                                        GrRenderable,
318                                        int renderTargetSampleCnt,
319                                        GrMipMapped,
320                                        GrProtected);
321 
322     /*
323      * Try to find an existing scratch texture that exactly matches 'desc'. If successful
324      * update the budgeting accordingly.
325      */
326     sk_sp<GrTexture> getExactScratch(SkISize dimensions,
327                                      const GrBackendFormat&,
328                                      GrRenderable,
329                                      int renderTargetSampleCnt,
330                                      SkBudgeted,
331                                      GrMipMapped,
332                                      GrProtected);
333 
334     // Used to perform any conversions necessary to texel data before creating a texture with
335     // existing data or uploading to a scratch texture.
336     using TempLevels = SkAutoSTMalloc<14, GrMipLevel>;
337     using TempLevelDatas = SkAutoSTArray<14, std::unique_ptr<char[]>>;
338     GrColorType prepareLevels(const GrBackendFormat& format,
339                               GrColorType,
340                               SkISize baseSize,
341                               const GrMipLevel texels[],
342                               int mipLevelCount,
343                               TempLevels*,
344                               TempLevelDatas*) const;
345 
346     // GrResourceProvider may be asked to "create" a new texture with initial pixel data to populate
347     // it. In implementation it may pull an existing texture from GrResourceCache and then write the
348     // pixel data to the texture. It takes a width/height for the base level because we may be
349     // using an approximate-sized scratch texture. On success the texture is returned and nullptr
350     // on failure.
351     sk_sp<GrTexture> writePixels(sk_sp<GrTexture> texture,
352                                  GrColorType colorType,
353                                  SkISize baseSize,
354                                  const GrMipLevel texels[],
355                                  int mipLevelCount) const;
356 
cache()357     GrResourceCache* cache() { return fCache; }
cache()358     const GrResourceCache* cache() const { return fCache; }
359 
360     friend class GrResourceProviderPriv;
361 
362     // Method made available via GrResourceProviderPriv
gpu()363     GrGpu* gpu() { return fGpu; }
gpu()364     const GrGpu* gpu() const { return fGpu; }
365 
isAbandoned()366     bool isAbandoned() const {
367         SkASSERT(SkToBool(fGpu) == SkToBool(fCache));
368         return !SkToBool(fCache);
369     }
370 
371     sk_sp<const GrGpuBuffer> createPatternedIndexBuffer(const uint16_t* pattern,
372                                                         int patternSize,
373                                                         int reps,
374                                                         int vertCount,
375                                                         const GrUniqueKey* key);
376 
377     sk_sp<const GrGpuBuffer> createNonAAQuadIndexBuffer();
378     sk_sp<const GrGpuBuffer> createAAQuadIndexBuffer();
379 
380     GrResourceCache* fCache;
381     GrGpu* fGpu;
382     sk_sp<const GrCaps> fCaps;
383     sk_sp<const GrGpuBuffer> fNonAAQuadIndexBuffer;
384     sk_sp<const GrGpuBuffer> fAAQuadIndexBuffer;
385 
386     // In debug builds we guard against improper thread handling
387     SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;)
388 };
389 
390 #endif
391