blob: 29e39d967726955fa5fd913dddf193778d4a844a [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>);
Robert Phillips63c67462017-02-15 14:19:01 -0500171 static sk_sp<GrTextureProxy> MakeWrapped(sk_sp<GrTexture>);
Robert Phillips37430132016-11-09 06:50:43 -0500172
173 static sk_sp<GrSurfaceProxy> MakeDeferred(const GrCaps&, const GrSurfaceDesc&,
Robert Phillipsc787e492017-02-28 11:26:32 -0500174 SkBackingFit, SkBudgeted, uint32_t flags = 0);
Robert Phillips37430132016-11-09 06:50:43 -0500175
176 // TODO: need to refine ownership semantics of 'srcData' if we're in completely
177 // deferred mode
178 static sk_sp<GrSurfaceProxy> MakeDeferred(const GrCaps&, GrTextureProvider*,
179 const GrSurfaceDesc&, SkBudgeted,
180 const void* srcData, size_t rowBytes);
181
Robert Phillips26caf892017-01-27 10:58:31 -0500182 static sk_sp<GrSurfaceProxy> MakeWrappedBackend(
183 GrContext*,
184 GrBackendTextureDesc&,
185 GrWrapOwnership ownership = kBorrow_GrWrapOwnership);
186
robertphillips76948d42016-05-04 12:47:41 -0700187 const GrSurfaceDesc& desc() const { return fDesc; }
188
189 GrSurfaceOrigin origin() const {
190 SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin ||
191 kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
192 return fDesc.fOrigin;
193 }
194 int width() const { return fDesc.fWidth; }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400195 int height() const { return fDesc.fHeight; }
robertphillips76948d42016-05-04 12:47:41 -0700196 GrPixelConfig config() const { return fDesc.fConfig; }
197
Robert Phillips294870f2016-11-11 12:38:40 -0500198 class UniqueID {
199 public:
200 // wrapped
201 explicit UniqueID(const GrGpuResource::UniqueID& id) : fID(id.asUInt()) { }
202 // deferred
203 UniqueID() : fID(GrGpuResource::CreateUniqueID()) { }
204
205 uint32_t asUInt() const { return fID; }
206
207 bool operator==(const UniqueID& other) const {
208 return fID == other.fID;
209 }
210 bool operator!=(const UniqueID& other) const {
211 return !(*this == other);
212 }
213
214 bool isInvalid() const { return SK_InvalidUniqueID == fID; }
215
216 private:
217 const uint32_t fID;
218 };
219
220 /*
221 * The contract for the uniqueID is:
222 * for wrapped resources:
223 * the uniqueID will match that of the wrapped resource
224 *
225 * for deferred resources:
226 * the uniqueID will be different from the real resource, when it is allocated
227 * the proxy's uniqueID will not change across the instantiate call
228 *
229 * the uniqueIDs of the proxies and the resources draw from the same pool
230 *
231 * What this boils down to is that the uniqueID of a proxy can be used to consistently
232 * track/identify a proxy but should never be used to distinguish between
233 * resources and proxies - beware!
234 */
235 UniqueID uniqueID() const { return fUniqueID; }
robertphillips76948d42016-05-04 12:47:41 -0700236
Robert Phillips37430132016-11-09 06:50:43 -0500237 GrSurface* instantiate(GrTextureProvider* texProvider);
238
robertphillips76948d42016-05-04 12:47:41 -0700239 /**
robertphillips13a7eee2016-08-31 15:06:24 -0700240 * Helper that gets the width and height of the surface as a bounding rectangle.
241 */
242 SkRect getBoundsRect() const { return SkRect::MakeIWH(this->width(), this->height()); }
Robert Phillips784b7bf2016-12-09 13:35:02 -0500243
244 int worstCaseWidth(const GrCaps& caps) const;
245 int worstCaseHeight(const GrCaps& caps) const;
Robert Phillips93f16332016-11-23 19:37:13 -0500246
robertphillips13a7eee2016-08-31 15:06:24 -0700247 /**
robertphillips76948d42016-05-04 12:47:41 -0700248 * @return the texture proxy associated with the surface proxy, may be NULL.
249 */
250 virtual GrTextureProxy* asTextureProxy() { return nullptr; }
251 virtual const GrTextureProxy* asTextureProxy() const { return nullptr; }
252
253 /**
254 * @return the render target proxy associated with the surface proxy, may be NULL.
255 */
256 virtual GrRenderTargetProxy* asRenderTargetProxy() { return nullptr; }
257 virtual const GrRenderTargetProxy* asRenderTargetProxy() const { return nullptr; }
258
robertphillips13a7eee2016-08-31 15:06:24 -0700259 /**
260 * Does the resource count against the resource budget?
261 */
262 SkBudgeted isBudgeted() const { return fBudgeted; }
263
Robert Phillipsf2361d22016-10-25 14:20:06 -0400264 void setLastOpList(GrOpList* opList);
265 GrOpList* getLastOpList() { return fLastOpList; }
266
Brian Osman45580d32016-11-23 09:37:01 -0500267 GrRenderTargetOpList* getLastRenderTargetOpList();
268 GrTextureOpList* getLastTextureOpList();
269
Robert Phillips8bc06d02016-11-01 17:28:40 -0400270 /**
271 * Retrieves the amount of GPU memory that will be or currently is used by this resource
272 * in bytes. It is approximate since we aren't aware of additional padding or copies made
273 * by the driver.
274 *
275 * @return the amount of GPU memory used in bytes
276 */
277 size_t gpuMemorySize() const {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400278 if (kInvalidGpuMemorySize == fGpuMemorySize) {
279 fGpuMemorySize = this->onGpuMemorySize();
280 SkASSERT(kInvalidGpuMemorySize != fGpuMemorySize);
281 }
282 return fGpuMemorySize;
283 }
284
Robert Phillipse2f7d182016-12-15 09:23:05 -0500285 // Helper function that creates a temporary SurfaceContext to perform the copy
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 Phillips63c67462017-02-15 14:19:01 -0500290 static sk_sp<GrTextureProxy> Copy(GrContext* context, GrSurfaceProxy* src,
291 SkBudgeted budgeted);
Robert Phillipse2f7d182016-12-15 09:23:05 -0500292
293 // Test-only entry point - should decrease in use as proxies propagate
Robert Phillipsd46697a2017-01-25 12:10:37 -0500294 static sk_sp<GrSurfaceContext> TestCopy(GrContext* context, const GrSurfaceDesc& dstDesc,
295 GrSurfaceProxy* srcProxy);
Robert Phillipse2f7d182016-12-15 09:23:05 -0500296
Robert Phillipseaa86252016-11-08 13:49:39 +0000297 bool isWrapped_ForTesting() const;
298
Brian Osman45580d32016-11-23 09:37:01 -0500299 SkDEBUGCODE(void validate(GrContext*) const;)
300
Robert Phillips757914d2017-01-25 15:48:30 -0500301 // Provides access to functions that aren't part of the public API.
302 GrSurfaceProxyPriv priv();
303 const GrSurfaceProxyPriv priv() const;
304
robertphillips76948d42016-05-04 12:47:41 -0700305protected:
robertphillips8abb3702016-08-31 14:04:06 -0700306 // Deferred version
Robert Phillipsc787e492017-02-28 11:26:32 -0500307 GrSurfaceProxy(const GrSurfaceDesc& desc, SkBackingFit fit, SkBudgeted budgeted, uint32_t flags)
robertphillips76948d42016-05-04 12:47:41 -0700308 : fDesc(desc)
309 , fFit(fit)
310 , fBudgeted(budgeted)
Robert Phillipsc787e492017-02-28 11:26:32 -0500311 , fFlags(flags)
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
Robert Phillipsc787e492017-02-28 11:26:32 -0500333 const uint32_t fFlags;
Robert Phillips294870f2016-11-11 12:38:40 -0500334 const UniqueID fUniqueID; // set from the backing resource for wrapped resources
robertphillips76948d42016-05-04 12:47:41 -0700335
Robert Phillips8bc06d02016-11-01 17:28:40 -0400336 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0);
Robert Phillips29e52f12016-11-03 10:19:14 -0400337 SkDEBUGCODE(size_t getRawGpuMemorySize_debugOnly() const { return fGpuMemorySize; })
338
339private:
340 virtual size_t onGpuMemorySize() const = 0;
341
Robert Phillips8bc06d02016-11-01 17:28:40 -0400342 // This entry is lazily evaluated so, when the proxy wraps a resource, the resource
343 // will be called but, when the proxy is deferred, it will compute the answer itself.
344 // If the proxy computes its own answer that answer is checked (in debug mode) in
345 // the instantiation method.
346 mutable size_t fGpuMemorySize;
347
Robert Phillipsf2361d22016-10-25 14:20:06 -0400348 // The last opList that wrote to or is currently going to write to this surface
Brian Osman11052242016-10-27 14:47:55 -0400349 // The opList can be closed (e.g., no render target context is currently bound
Robert Phillipsf2361d22016-10-25 14:20:06 -0400350 // to this renderTarget).
351 // This back-pointer is required so that we can add a dependancy between
352 // the opList used to create the current contents of this surface
353 // and the opList of a destination surface to which this one is being drawn or copied.
354 GrOpList* fLastOpList;
355
Robert Phillips29e52f12016-11-03 10:19:14 -0400356
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400357 typedef GrIORefProxy INHERITED;
robertphillips76948d42016-05-04 12:47:41 -0700358};
359
360#endif