blob: 0443227d3c574a0ae4197b1de12cfe406e576ec7 [file] [log] [blame]
robertphillips76948d42016-05-04 12:47:41 -07001/*
2 * Copyright 2016 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 GrSurfaceProxy_DEFINED
9#define GrSurfaceProxy_DEFINED
10
11#include "GrGpuResource.h"
Robert Phillipsc7635fa2016-10-28 13:25:24 -040012#include "GrSurface.h"
Robert Phillips93f16332016-11-23 19:37:13 -050013
csmartdaltonbf4a8f92016-09-06 10:01:06 -070014#include "SkRect.h"
robertphillips76948d42016-05-04 12:47:41 -070015
Robert Phillips37430132016-11-09 06:50:43 -050016class GrCaps;
Brian Osman45580d32016-11-23 09:37:01 -050017class GrRenderTargetOpList;
18class GrRenderTargetProxy;
Brian Osman32342f02017-03-04 08:12:46 -050019class GrResourceProvider;
Robert Phillipsd46697a2017-01-25 12:10:37 -050020class GrSurfaceContext;
Robert Phillips757914d2017-01-25 15:48:30 -050021class GrSurfaceProxyPriv;
Brian Osman45580d32016-11-23 09:37:01 -050022class GrTextureOpList;
robertphillips76948d42016-05-04 12:47:41 -070023class GrTextureProxy;
robertphillips76948d42016-05-04 12:47:41 -070024
Robert Phillipsc7635fa2016-10-28 13:25:24 -040025// This class replicates the functionality GrIORef<GrSurface> but tracks the
26// utilitization for later resource allocation (for the deferred case) and
27// forwards on the utilization in the wrapped case
28class GrIORefProxy : public SkNoncopyable {
29public:
30 void ref() const {
31 this->validate();
32
33 ++fRefCnt;
34 if (fTarget) {
35 fTarget->ref();
36 }
37 }
38
39 void unref() const {
40 this->validate();
41
42 if (fTarget) {
43 fTarget->unref();
44 }
45
46 if (!(--fRefCnt)) {
47 delete this;
48 return;
49 }
50
51 this->validate();
52 }
53
54 void validate() const {
55#ifdef SK_DEBUG
robertphillips1125a032016-11-16 11:17:17 -080056 SkASSERT(fRefCnt >= 1);
57 SkASSERT(fPendingReads >= 0);
58 SkASSERT(fPendingWrites >= 0);
59 SkASSERT(fRefCnt + fPendingReads + fPendingWrites >= 1);
60
61 if (fTarget) {
62 SkASSERT(!fPendingReads && !fPendingWrites);
63 // The backing GrSurface can have more refs than the proxy if the proxy
64 // started off wrapping an external resource (that came in with refs).
65 // The GrSurface should never have fewer refs than the proxy however.
66 SkASSERT(fTarget->fRefCnt >= fRefCnt);
67 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -040068#endif
69 }
70
robertphillips1125a032016-11-16 11:17:17 -080071 int32_t getProxyRefCnt_TestOnly() const;
72 int32_t getBackingRefCnt_TestOnly() const;
73 int32_t getPendingReadCnt_TestOnly() const;
74 int32_t getPendingWriteCnt_TestOnly() const;
75
Robert Phillipsc7635fa2016-10-28 13:25:24 -040076protected:
robertphillips1125a032016-11-16 11:17:17 -080077 GrIORefProxy() : fTarget(nullptr), fRefCnt(1), fPendingReads(0), fPendingWrites(0) {}
78 GrIORefProxy(sk_sp<GrSurface> surface) : fRefCnt(1), fPendingReads(0), fPendingWrites(0) {
Robert Phillipsc7635fa2016-10-28 13:25:24 -040079 // Since we're manually forwarding on refs & unrefs we don't want sk_sp doing
80 // anything extra.
81 fTarget = surface.release();
82 }
83 virtual ~GrIORefProxy() {
84 // We don't unref 'fTarget' here since the 'unref' method will already
85 // have forwarded on the unref call that got use here.
86 }
87
robertphillips1125a032016-11-16 11:17:17 -080088 // This GrIORefProxy was deferred before but has just been instantiated. To
89 // make all the reffing & unreffing work out we now need to transfer any deferred
90 // refs & unrefs to the new GrSurface
91 void transferRefs() {
92 SkASSERT(fTarget);
93
94 fTarget->fRefCnt += (fRefCnt-1); // don't xfer the proxy's creation ref
95 fTarget->fPendingReads += fPendingReads;
96 fTarget->fPendingWrites += fPendingWrites;
97
98 fPendingReads = 0;
99 fPendingWrites = 0;
100 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400101
Robert Phillips757914d2017-01-25 15:48:30 -0500102 bool internalHasPendingIO() const {
103 if (fTarget) {
104 return fTarget->internalHasPendingIO();
105 }
106
107 return SkToBool(fPendingWrites | fPendingReads);
108 }
109
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400110 // For deferred proxies this will be null. For wrapped proxies it will point to the
111 // wrapped resource.
112 GrSurface* fTarget;
robertphillips1125a032016-11-16 11:17:17 -0800113
114private:
115 // This class is used to manage conversion of refs to pending reads/writes.
116 friend class GrGpuResourceRef;
117 template <typename, GrIOType> friend class GrPendingIOResource;
118
119 void addPendingRead() const {
120 this->validate();
121
122 if (fTarget) {
123 fTarget->addPendingRead();
124 return;
125 }
126
127 ++fPendingReads;
128 }
129
130 void completedRead() const {
131 this->validate();
132
133 if (fTarget) {
134 fTarget->completedRead();
135 return;
136 }
137
138 SkFAIL("How was the read completed if the Proxy hasn't been instantiated?");
139 }
140
141 void addPendingWrite() const {
142 this->validate();
143
144 if (fTarget) {
145 fTarget->addPendingWrite();
146 return;
147 }
148
149 ++fPendingWrites;
150 }
151
152 void completedWrite() const {
153 this->validate();
154
155 if (fTarget) {
156 fTarget->completedWrite();
157 return;
158 }
159
160 SkFAIL("How was the write completed if the Proxy hasn't been instantiated?");
161 }
162
163 mutable int32_t fRefCnt;
164 mutable int32_t fPendingReads;
165 mutable int32_t fPendingWrites;
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400166};
167
168class GrSurfaceProxy : public GrIORefProxy {
robertphillips76948d42016-05-04 12:47:41 -0700169public:
Robert Phillips37430132016-11-09 06:50:43 -0500170 static sk_sp<GrSurfaceProxy> MakeWrapped(sk_sp<GrSurface>);
Robert Phillips63c67462017-02-15 14:19:01 -0500171 static sk_sp<GrTextureProxy> MakeWrapped(sk_sp<GrTexture>);
Robert Phillips37430132016-11-09 06:50:43 -0500172
Robert Phillips26c90e02017-03-14 14:39:29 -0400173 static sk_sp<GrTextureProxy> MakeDeferred(GrResourceProvider*,
Robert Phillips7928e762017-02-28 16:30:28 -0500174 const GrSurfaceDesc&, SkBackingFit,
175 SkBudgeted, uint32_t flags = 0);
Robert Phillips37430132016-11-09 06:50:43 -0500176
177 // TODO: need to refine ownership semantics of 'srcData' if we're in completely
178 // deferred mode
Robert Phillips26c90e02017-03-14 14:39:29 -0400179 static sk_sp<GrTextureProxy> MakeDeferred(GrResourceProvider*,
Robert Phillips37430132016-11-09 06:50:43 -0500180 const GrSurfaceDesc&, SkBudgeted,
181 const void* srcData, size_t rowBytes);
182
Robert Phillipsd3749482017-03-14 09:17:43 -0400183 static sk_sp<GrSurfaceProxy> MakeWrappedBackend(GrContext*, GrBackendTextureDesc&);
Robert Phillips26caf892017-01-27 10:58:31 -0500184
robertphillips76948d42016-05-04 12:47:41 -0700185 const GrSurfaceDesc& desc() const { return fDesc; }
186
187 GrSurfaceOrigin origin() const {
188 SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin ||
189 kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
190 return fDesc.fOrigin;
191 }
192 int width() const { return fDesc.fWidth; }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400193 int height() const { return fDesc.fHeight; }
robertphillips76948d42016-05-04 12:47:41 -0700194 GrPixelConfig config() const { return fDesc.fConfig; }
195
Robert Phillips294870f2016-11-11 12:38:40 -0500196 class UniqueID {
197 public:
198 // wrapped
199 explicit UniqueID(const GrGpuResource::UniqueID& id) : fID(id.asUInt()) { }
200 // deferred
201 UniqueID() : fID(GrGpuResource::CreateUniqueID()) { }
202
203 uint32_t asUInt() const { return fID; }
204
205 bool operator==(const UniqueID& other) const {
206 return fID == other.fID;
207 }
208 bool operator!=(const UniqueID& other) const {
209 return !(*this == other);
210 }
211
212 bool isInvalid() const { return SK_InvalidUniqueID == fID; }
213
214 private:
215 const uint32_t fID;
216 };
217
218 /*
219 * The contract for the uniqueID is:
220 * for wrapped resources:
221 * the uniqueID will match that of the wrapped resource
222 *
223 * for deferred resources:
224 * the uniqueID will be different from the real resource, when it is allocated
225 * the proxy's uniqueID will not change across the instantiate call
226 *
227 * the uniqueIDs of the proxies and the resources draw from the same pool
228 *
229 * What this boils down to is that the uniqueID of a proxy can be used to consistently
230 * track/identify a proxy but should never be used to distinguish between
231 * resources and proxies - beware!
232 */
233 UniqueID uniqueID() const { return fUniqueID; }
robertphillips76948d42016-05-04 12:47:41 -0700234
Brian Osman32342f02017-03-04 08:12:46 -0500235 GrSurface* instantiate(GrResourceProvider* resourceProvider);
Robert Phillips37430132016-11-09 06:50:43 -0500236
robertphillips76948d42016-05-04 12:47:41 -0700237 /**
robertphillips13a7eee2016-08-31 15:06:24 -0700238 * Helper that gets the width and height of the surface as a bounding rectangle.
239 */
240 SkRect getBoundsRect() const { return SkRect::MakeIWH(this->width(), this->height()); }
Robert Phillips784b7bf2016-12-09 13:35:02 -0500241
242 int worstCaseWidth(const GrCaps& caps) const;
243 int worstCaseHeight(const GrCaps& caps) const;
Robert Phillips93f16332016-11-23 19:37:13 -0500244
robertphillips13a7eee2016-08-31 15:06:24 -0700245 /**
robertphillips76948d42016-05-04 12:47:41 -0700246 * @return the texture proxy associated with the surface proxy, may be NULL.
247 */
248 virtual GrTextureProxy* asTextureProxy() { return nullptr; }
249 virtual const GrTextureProxy* asTextureProxy() const { return nullptr; }
250
251 /**
252 * @return the render target proxy associated with the surface proxy, may be NULL.
253 */
254 virtual GrRenderTargetProxy* asRenderTargetProxy() { return nullptr; }
255 virtual const GrRenderTargetProxy* asRenderTargetProxy() const { return nullptr; }
256
robertphillips13a7eee2016-08-31 15:06:24 -0700257 /**
258 * Does the resource count against the resource budget?
259 */
260 SkBudgeted isBudgeted() const { return fBudgeted; }
261
Robert Phillipsf2361d22016-10-25 14:20:06 -0400262 void setLastOpList(GrOpList* opList);
263 GrOpList* getLastOpList() { return fLastOpList; }
264
Brian Osman45580d32016-11-23 09:37:01 -0500265 GrRenderTargetOpList* getLastRenderTargetOpList();
266 GrTextureOpList* getLastTextureOpList();
267
Robert Phillips8bc06d02016-11-01 17:28:40 -0400268 /**
269 * Retrieves the amount of GPU memory that will be or currently is used by this resource
270 * in bytes. It is approximate since we aren't aware of additional padding or copies made
271 * by the driver.
272 *
273 * @return the amount of GPU memory used in bytes
274 */
275 size_t gpuMemorySize() const {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400276 if (kInvalidGpuMemorySize == fGpuMemorySize) {
277 fGpuMemorySize = this->onGpuMemorySize();
278 SkASSERT(kInvalidGpuMemorySize != fGpuMemorySize);
279 }
280 return fGpuMemorySize;
281 }
282
Robert Phillipse2f7d182016-12-15 09:23:05 -0500283 // Helper function that creates a temporary SurfaceContext to perform the copy
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400284 // It always returns a kExact-backed proxy bc it is used when converting an SkSpecialImage
285 // to an SkImage.
Robert Phillips63c67462017-02-15 14:19:01 -0500286 static sk_sp<GrTextureProxy> Copy(GrContext*, GrSurfaceProxy* src,
Robert Phillipse2f7d182016-12-15 09:23:05 -0500287 SkIRect srcRect, SkBudgeted);
288
289 // Copy the entire 'src'
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400290 // It always returns a kExact-backed proxy bc it is used in SkGpuDevice::snapSpecial
Robert Phillips63c67462017-02-15 14:19:01 -0500291 static sk_sp<GrTextureProxy> Copy(GrContext* context, GrSurfaceProxy* src,
292 SkBudgeted budgeted);
Robert Phillipse2f7d182016-12-15 09:23:05 -0500293
294 // Test-only entry point - should decrease in use as proxies propagate
Robert Phillipsd46697a2017-01-25 12:10:37 -0500295 static sk_sp<GrSurfaceContext> TestCopy(GrContext* context, const GrSurfaceDesc& dstDesc,
296 GrSurfaceProxy* srcProxy);
Robert Phillipse2f7d182016-12-15 09:23:05 -0500297
Robert Phillipseaa86252016-11-08 13:49:39 +0000298 bool isWrapped_ForTesting() const;
299
Brian Osman45580d32016-11-23 09:37:01 -0500300 SkDEBUGCODE(void validate(GrContext*) const;)
301
Robert Phillips757914d2017-01-25 15:48:30 -0500302 // Provides access to functions that aren't part of the public API.
303 GrSurfaceProxyPriv priv();
304 const GrSurfaceProxyPriv priv() const;
305
robertphillips76948d42016-05-04 12:47:41 -0700306protected:
robertphillips8abb3702016-08-31 14:04:06 -0700307 // Deferred version
Robert Phillipsc787e492017-02-28 11:26:32 -0500308 GrSurfaceProxy(const GrSurfaceDesc& desc, SkBackingFit fit, SkBudgeted budgeted, uint32_t flags)
robertphillips76948d42016-05-04 12:47:41 -0700309 : fDesc(desc)
310 , fFit(fit)
311 , fBudgeted(budgeted)
Robert Phillipsc787e492017-02-28 11:26:32 -0500312 , fFlags(flags)
Robert Phillipsa4c41b32017-03-15 13:02:45 -0400313 // fMipColorMode is only valid for texturable proxies
314 , fMipColorMode(SkDestinationSurfaceColorMode::kLegacy)
Robert Phillips8bc06d02016-11-01 17:28:40 -0400315 , fGpuMemorySize(kInvalidGpuMemorySize)
Robert Phillipsf2361d22016-10-25 14:20:06 -0400316 , fLastOpList(nullptr) {
Robert Phillips294870f2016-11-11 12:38:40 -0500317 // Note: this ctor pulls a new uniqueID from the same pool at the GrGpuResources
robertphillips8abb3702016-08-31 14:04:06 -0700318 }
319
320 // Wrapped version
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400321 GrSurfaceProxy(sk_sp<GrSurface> surface, SkBackingFit fit);
robertphillips76948d42016-05-04 12:47:41 -0700322
Robert Phillipsf2361d22016-10-25 14:20:06 -0400323 virtual ~GrSurfaceProxy();
324
Robert Phillips757914d2017-01-25 15:48:30 -0500325 friend class GrSurfaceProxyPriv;
326
327 // Methods made available via GrSurfaceProxyPriv
328 bool hasPendingIO() const {
329 return this->internalHasPendingIO();
330 }
331
robertphillips76948d42016-05-04 12:47:41 -0700332 // For wrapped resources, 'fDesc' will always be filled in from the wrapped resource.
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400333 GrSurfaceDesc fDesc;
334 SkBackingFit fFit; // always exact for wrapped resources
Robert Phillipsb726d582017-03-09 16:36:32 -0500335 mutable SkBudgeted fBudgeted; // set from the backing resource for wrapped resources
336 // mutable bc of SkSurface/SkImage wishy-washiness
Robert Phillipsc787e492017-02-28 11:26:32 -0500337 const uint32_t fFlags;
Robert Phillipsa4c41b32017-03-15 13:02:45 -0400338
339 SkDestinationSurfaceColorMode fMipColorMode;
340
Robert Phillips294870f2016-11-11 12:38:40 -0500341 const UniqueID fUniqueID; // set from the backing resource for wrapped resources
robertphillips76948d42016-05-04 12:47:41 -0700342
Robert Phillips8bc06d02016-11-01 17:28:40 -0400343 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0);
Robert Phillips29e52f12016-11-03 10:19:14 -0400344 SkDEBUGCODE(size_t getRawGpuMemorySize_debugOnly() const { return fGpuMemorySize; })
345
346private:
347 virtual size_t onGpuMemorySize() const = 0;
348
Robert Phillips8bc06d02016-11-01 17:28:40 -0400349 // This entry is lazily evaluated so, when the proxy wraps a resource, the resource
350 // will be called but, when the proxy is deferred, it will compute the answer itself.
351 // If the proxy computes its own answer that answer is checked (in debug mode) in
352 // the instantiation method.
353 mutable size_t fGpuMemorySize;
354
Robert Phillipsf2361d22016-10-25 14:20:06 -0400355 // The last opList that wrote to or is currently going to write to this surface
Brian Osman11052242016-10-27 14:47:55 -0400356 // The opList can be closed (e.g., no render target context is currently bound
Robert Phillipsf2361d22016-10-25 14:20:06 -0400357 // to this renderTarget).
358 // This back-pointer is required so that we can add a dependancy between
359 // the opList used to create the current contents of this surface
360 // and the opList of a destination surface to which this one is being drawn or copied.
361 GrOpList* fLastOpList;
362
Robert Phillips29e52f12016-11-03 10:19:14 -0400363
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400364 typedef GrIORefProxy INHERITED;
robertphillips76948d42016-05-04 12:47:41 -0700365};
366
367#endif