blob: a08cb2654a117b66deca8c76b2214becba89fa22 [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;
Robert Phillipsd46697a2017-01-25 12:10:37 -050019class GrSurfaceContext;
Robert Phillips757914d2017-01-25 15:48:30 -050020class GrSurfaceProxyPriv;
Brian Osman45580d32016-11-23 09:37:01 -050021class GrTextureOpList;
Robert Phillipseaa86252016-11-08 13:49:39 +000022class GrTextureProvider;
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>);
171
172 static sk_sp<GrSurfaceProxy> MakeDeferred(const GrCaps&, const GrSurfaceDesc&,
173 SkBackingFit, SkBudgeted);
174
175 // TODO: need to refine ownership semantics of 'srcData' if we're in completely
176 // deferred mode
177 static sk_sp<GrSurfaceProxy> MakeDeferred(const GrCaps&, GrTextureProvider*,
178 const GrSurfaceDesc&, SkBudgeted,
179 const void* srcData, size_t rowBytes);
180
Robert Phillips26caf892017-01-27 10:58:31 -0500181 static sk_sp<GrSurfaceProxy> MakeWrappedBackend(
182 GrContext*,
183 GrBackendTextureDesc&,
184 GrWrapOwnership ownership = kBorrow_GrWrapOwnership);
185
robertphillips76948d42016-05-04 12:47:41 -0700186 const GrSurfaceDesc& desc() const { return fDesc; }
187
188 GrSurfaceOrigin origin() const {
189 SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin ||
190 kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
191 return fDesc.fOrigin;
192 }
193 int width() const { return fDesc.fWidth; }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400194 int height() const { return fDesc.fHeight; }
robertphillips76948d42016-05-04 12:47:41 -0700195 GrPixelConfig config() const { return fDesc.fConfig; }
196
Robert Phillips294870f2016-11-11 12:38:40 -0500197 class UniqueID {
198 public:
199 // wrapped
200 explicit UniqueID(const GrGpuResource::UniqueID& id) : fID(id.asUInt()) { }
201 // deferred
202 UniqueID() : fID(GrGpuResource::CreateUniqueID()) { }
203
204 uint32_t asUInt() const { return fID; }
205
206 bool operator==(const UniqueID& other) const {
207 return fID == other.fID;
208 }
209 bool operator!=(const UniqueID& other) const {
210 return !(*this == other);
211 }
212
213 bool isInvalid() const { return SK_InvalidUniqueID == fID; }
214
215 private:
216 const uint32_t fID;
217 };
218
219 /*
220 * The contract for the uniqueID is:
221 * for wrapped resources:
222 * the uniqueID will match that of the wrapped resource
223 *
224 * for deferred resources:
225 * the uniqueID will be different from the real resource, when it is allocated
226 * the proxy's uniqueID will not change across the instantiate call
227 *
228 * the uniqueIDs of the proxies and the resources draw from the same pool
229 *
230 * What this boils down to is that the uniqueID of a proxy can be used to consistently
231 * track/identify a proxy but should never be used to distinguish between
232 * resources and proxies - beware!
233 */
234 UniqueID uniqueID() const { return fUniqueID; }
robertphillips76948d42016-05-04 12:47:41 -0700235
Robert Phillips37430132016-11-09 06:50:43 -0500236 GrSurface* instantiate(GrTextureProvider* texProvider);
237
robertphillips76948d42016-05-04 12:47:41 -0700238 /**
robertphillips13a7eee2016-08-31 15:06:24 -0700239 * Helper that gets the width and height of the surface as a bounding rectangle.
240 */
241 SkRect getBoundsRect() const { return SkRect::MakeIWH(this->width(), this->height()); }
Robert Phillips784b7bf2016-12-09 13:35:02 -0500242
243 int worstCaseWidth(const GrCaps& caps) const;
244 int worstCaseHeight(const GrCaps& caps) const;
Robert Phillips93f16332016-11-23 19:37:13 -0500245
robertphillips13a7eee2016-08-31 15:06:24 -0700246 /**
robertphillips76948d42016-05-04 12:47:41 -0700247 * @return the texture proxy associated with the surface proxy, may be NULL.
248 */
249 virtual GrTextureProxy* asTextureProxy() { return nullptr; }
250 virtual const GrTextureProxy* asTextureProxy() const { return nullptr; }
251
252 /**
253 * @return the render target proxy associated with the surface proxy, may be NULL.
254 */
255 virtual GrRenderTargetProxy* asRenderTargetProxy() { return nullptr; }
256 virtual const GrRenderTargetProxy* asRenderTargetProxy() const { return nullptr; }
257
robertphillips13a7eee2016-08-31 15:06:24 -0700258 /**
259 * Does the resource count against the resource budget?
260 */
261 SkBudgeted isBudgeted() const { return fBudgeted; }
262
Robert Phillipsf2361d22016-10-25 14:20:06 -0400263 void setLastOpList(GrOpList* opList);
264 GrOpList* getLastOpList() { return fLastOpList; }
265
Brian Osman45580d32016-11-23 09:37:01 -0500266 GrRenderTargetOpList* getLastRenderTargetOpList();
267 GrTextureOpList* getLastTextureOpList();
268
Robert Phillips8bc06d02016-11-01 17:28:40 -0400269 /**
270 * Retrieves the amount of GPU memory that will be or currently is used by this resource
271 * in bytes. It is approximate since we aren't aware of additional padding or copies made
272 * by the driver.
273 *
274 * @return the amount of GPU memory used in bytes
275 */
276 size_t gpuMemorySize() const {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400277 if (kInvalidGpuMemorySize == fGpuMemorySize) {
278 fGpuMemorySize = this->onGpuMemorySize();
279 SkASSERT(kInvalidGpuMemorySize != fGpuMemorySize);
280 }
281 return fGpuMemorySize;
282 }
283
Robert Phillipse2f7d182016-12-15 09:23:05 -0500284 // Helper function that creates a temporary SurfaceContext to perform the copy
285 static sk_sp<GrSurfaceProxy> Copy(GrContext*, GrSurfaceProxy* src,
286 SkIRect srcRect, SkBudgeted);
287
288 // Copy the entire 'src'
289 static sk_sp<GrSurfaceProxy> Copy(GrContext* context, GrSurfaceProxy* src,
290 SkBudgeted budgeted) {
291 return Copy(context, src, SkIRect::MakeWH(src->width(), src->height()), budgeted);
292 }
293
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
robertphillips76948d42016-05-04 12:47:41 -0700308 GrSurfaceProxy(const GrSurfaceDesc& desc, SkBackingFit fit, SkBudgeted budgeted)
309 : fDesc(desc)
310 , fFit(fit)
311 , fBudgeted(budgeted)
Robert Phillips8bc06d02016-11-01 17:28:40 -0400312 , fGpuMemorySize(kInvalidGpuMemorySize)
Robert Phillipsf2361d22016-10-25 14:20:06 -0400313 , fLastOpList(nullptr) {
Robert Phillips294870f2016-11-11 12:38:40 -0500314 // Note: this ctor pulls a new uniqueID from the same pool at the GrGpuResources
robertphillips8abb3702016-08-31 14:04:06 -0700315 }
316
317 // Wrapped version
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400318 GrSurfaceProxy(sk_sp<GrSurface> surface, SkBackingFit fit);
robertphillips76948d42016-05-04 12:47:41 -0700319
Robert Phillipsf2361d22016-10-25 14:20:06 -0400320 virtual ~GrSurfaceProxy();
321
Robert Phillips757914d2017-01-25 15:48:30 -0500322 friend class GrSurfaceProxyPriv;
323
324 // Methods made available via GrSurfaceProxyPriv
325 bool hasPendingIO() const {
326 return this->internalHasPendingIO();
327 }
328
robertphillips76948d42016-05-04 12:47:41 -0700329 // For wrapped resources, 'fDesc' will always be filled in from the wrapped resource.
Robert Phillips294870f2016-11-11 12:38:40 -0500330 const GrSurfaceDesc fDesc;
331 const SkBackingFit fFit; // always exact for wrapped resources
332 const SkBudgeted fBudgeted; // set from the backing resource for wrapped resources
333 const UniqueID fUniqueID; // set from the backing resource for wrapped resources
robertphillips76948d42016-05-04 12:47:41 -0700334
Robert Phillips8bc06d02016-11-01 17:28:40 -0400335 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0);
Robert Phillips29e52f12016-11-03 10:19:14 -0400336 SkDEBUGCODE(size_t getRawGpuMemorySize_debugOnly() const { return fGpuMemorySize; })
337
338private:
339 virtual size_t onGpuMemorySize() const = 0;
340
Robert Phillips8bc06d02016-11-01 17:28:40 -0400341 // This entry is lazily evaluated so, when the proxy wraps a resource, the resource
342 // will be called but, when the proxy is deferred, it will compute the answer itself.
343 // If the proxy computes its own answer that answer is checked (in debug mode) in
344 // the instantiation method.
345 mutable size_t fGpuMemorySize;
346
Robert Phillipsf2361d22016-10-25 14:20:06 -0400347 // The last opList that wrote to or is currently going to write to this surface
Brian Osman11052242016-10-27 14:47:55 -0400348 // The opList can be closed (e.g., no render target context is currently bound
Robert Phillipsf2361d22016-10-25 14:20:06 -0400349 // to this renderTarget).
350 // This back-pointer is required so that we can add a dependancy between
351 // the opList used to create the current contents of this surface
352 // and the opList of a destination surface to which this one is being drawn or copied.
353 GrOpList* fLastOpList;
354
Robert Phillips29e52f12016-11-03 10:19:14 -0400355
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400356 typedef GrIORefProxy INHERITED;
robertphillips76948d42016-05-04 12:47:41 -0700357};
358
359#endif