blob: bf7b237006b0fd270a1056744c130b5ce006be94 [file] [log] [blame]
bsalomonc8dc1f72014-08-21 13:02:13 -07001/*
2 * Copyright 2014 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
bsalomon0ea80f42015-02-11 10:49:59 -08008#ifndef GrResourceCache_DEFINED
9#define GrResourceCache_DEFINED
bsalomonc8dc1f72014-08-21 13:02:13 -070010
bsalomon744998e2014-08-28 09:54:34 -070011#include "GrGpuResource.h"
bsalomon9f2d1572015-02-17 11:47:40 -080012#include "GrGpuResourceCacheAccess.h"
bsalomon3582d3e2015-02-13 14:20:05 -080013#include "GrGpuResourcePriv.h"
bsalomonb77a9072016-09-07 10:02:04 -070014#include "GrResourceCache.h"
bsalomon744998e2014-08-28 09:54:34 -070015#include "GrResourceKey.h"
bsalomon23e619c2015-02-06 11:54:28 -080016#include "SkMessageBus.h"
bsalomon8b79d232014-11-10 10:19:06 -080017#include "SkRefCnt.h"
bsalomon23e619c2015-02-06 11:54:28 -080018#include "SkTArray.h"
bsalomon9f2d1572015-02-17 11:47:40 -080019#include "SkTDPQueue.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070020#include "SkTInternalLList.h"
bsalomon744998e2014-08-28 09:54:34 -070021#include "SkTMultiMap.h"
bsalomonc8dc1f72014-08-21 13:02:13 -070022
robertphillips63926682015-08-20 09:39:02 -070023class GrCaps;
mtkleinb9eb4ac2015-02-02 18:26:03 -080024class SkString;
ericrk0a5fa482015-09-15 14:16:10 -070025class SkTraceMemoryDump;
mtkleinb9eb4ac2015-02-02 18:26:03 -080026
bsalomonc8dc1f72014-08-21 13:02:13 -070027/**
bsalomon71cb0c22014-11-14 12:10:14 -080028 * Manages the lifetime of all GrGpuResource instances.
29 *
30 * Resources may have optionally have two types of keys:
31 * 1) A scratch key. This is for resources whose allocations are cached but not their contents.
32 * Multiple resources can share the same scratch key. This is so a caller can have two
bsalomon84c8e622014-11-17 09:33:27 -080033 * resource instances with the same properties (e.g. multipass rendering that ping-pongs
bsalomon8718aaf2015-02-19 07:24:21 -080034 * between two temporary surfaces). The scratch key is set at resource creation time and
bsalomon71cb0c22014-11-14 12:10:14 -080035 * should never change. Resources need not have a scratch key.
bsalomon8718aaf2015-02-19 07:24:21 -080036 * 2) A unique key. This key's meaning is specific to the domain that created the key. Only one
bsalomonf99e9612015-02-19 08:24:16 -080037 * resource may have a given unique key. The unique key can be set, cleared, or changed
38 * anytime after resource creation.
39 *
bsalomon8718aaf2015-02-19 07:24:21 -080040 * A unique key always takes precedence over a scratch key when a resource has both types of keys.
bsalomon71cb0c22014-11-14 12:10:14 -080041 * If a resource has neither key type then it will be deleted as soon as the last reference to it
bsalomon8718aaf2015-02-19 07:24:21 -080042 * is dropped.
bsalomon3f324322015-04-08 11:01:54 -070043 *
44 * When proactive purging is enabled, on every flush, the timestamp of that flush is stored in a
45 * n-sized ring buffer. When purging occurs each purgeable resource's timestamp is compared to the
46 * timestamp of the n-th prior flush. If the resource's last use timestamp is older than the old
47 * flush then the resource is proactively purged even when the cache is under budget. By default
48 * this feature is disabled, though it can be enabled by calling GrResourceCache::setLimits.
bsalomonc8dc1f72014-08-21 13:02:13 -070049 */
bsalomon0ea80f42015-02-11 10:49:59 -080050class GrResourceCache {
bsalomonc8dc1f72014-08-21 13:02:13 -070051public:
robertphillips63926682015-08-20 09:39:02 -070052 GrResourceCache(const GrCaps* caps);
bsalomon0ea80f42015-02-11 10:49:59 -080053 ~GrResourceCache();
bsalomonc8dc1f72014-08-21 13:02:13 -070054
bsalomon3f324322015-04-08 11:01:54 -070055 // Default maximum number of budgeted resources in the cache.
56 static const int kDefaultMaxCount = 2 * (1 << 12);
57 // Default maximum number of bytes of gpu memory of budgeted resources in the cache.
58 static const size_t kDefaultMaxSize = 96 * (1 << 20);
59 // Default number of flushes a budgeted resources can go unused in the cache before it is
60 // purged. Large values disable the feature (as the ring buffer of flush timestamps would be
bsalomonc03bdfa2015-11-03 11:48:43 -080061 // large). This is currently the default until we decide to enable this feature
62 // of the cache by default.
bsalomon9f0337e2015-12-09 06:27:59 -080063 static const int kDefaultMaxUnusedFlushes = 64;
bsalomon3f324322015-04-08 11:01:54 -070064
bsalomon71cb0c22014-11-14 12:10:14 -080065 /** Used to access functionality needed by GrGpuResource for lifetime management. */
66 class ResourceAccess;
67 ResourceAccess resourceAccess();
bsalomonc8dc1f72014-08-21 13:02:13 -070068
bsalomon71cb0c22014-11-14 12:10:14 -080069 /**
bsalomon3f324322015-04-08 11:01:54 -070070 * Sets the cache limits in terms of number of resources, max gpu memory byte size, and number
71 * of GrContext flushes that a resource can be unused before it is evicted. The latter value is
72 * a suggestion and there is no promise that a resource will be purged immediately after it
73 * hasn't been used in maxUnusedFlushes flushes.
bsalomon71cb0c22014-11-14 12:10:14 -080074 */
bsalomon3f324322015-04-08 11:01:54 -070075 void setLimits(int count, size_t bytes, int maxUnusedFlushes = kDefaultMaxUnusedFlushes);
bsalomonc8dc1f72014-08-21 13:02:13 -070076
bsalomon71cb0c22014-11-14 12:10:14 -080077 /**
bsalomondace19e2014-11-17 07:34:06 -080078 * Returns the number of resources.
bsalomon71cb0c22014-11-14 12:10:14 -080079 */
bsalomonf320e042015-02-17 15:09:34 -080080 int getResourceCount() const {
81 return fPurgeableQueue.count() + fNonpurgeableResources.count();
82 }
bsalomon8b79d232014-11-10 10:19:06 -080083
bsalomon71cb0c22014-11-14 12:10:14 -080084 /**
bsalomondace19e2014-11-17 07:34:06 -080085 * Returns the number of resources that count against the budget.
86 */
87 int getBudgetedResourceCount() const { return fBudgetedCount; }
88
89 /**
90 * Returns the number of bytes consumed by resources.
bsalomon71cb0c22014-11-14 12:10:14 -080091 */
92 size_t getResourceBytes() const { return fBytes; }
93
94 /**
bsalomondace19e2014-11-17 07:34:06 -080095 * Returns the number of bytes consumed by budgeted resources.
96 */
97 size_t getBudgetedResourceBytes() const { return fBudgetedBytes; }
98
99 /**
bsalomon71cb0c22014-11-14 12:10:14 -0800100 * Returns the cached resources count budget.
101 */
102 int getMaxResourceCount() const { return fMaxCount; }
103
104 /**
105 * Returns the number of bytes consumed by cached resources.
106 */
107 size_t getMaxResourceBytes() const { return fMaxBytes; }
108
109 /**
110 * Abandons the backend API resources owned by all GrGpuResource objects and removes them from
111 * the cache.
112 */
bsalomonc8dc1f72014-08-21 13:02:13 -0700113 void abandonAll();
114
bsalomon71cb0c22014-11-14 12:10:14 -0800115 /**
116 * Releases the backend API resources owned by all GrGpuResource objects and removes them from
117 * the cache.
118 */
bsalomonc8dc1f72014-08-21 13:02:13 -0700119 void releaseAll();
120
bsalomon000f8292014-10-15 19:04:14 -0700121 enum {
122 /** Preferentially returns scratch resources with no pending IO. */
123 kPreferNoPendingIO_ScratchFlag = 0x1,
124 /** Will not return any resources that match but have pending IO. */
125 kRequireNoPendingIO_ScratchFlag = 0x2,
126 };
bsalomon71cb0c22014-11-14 12:10:14 -0800127
128 /**
129 * Find a resource that matches a scratch key.
130 */
robertphillips6e83ac72015-08-13 05:19:14 -0700131 GrGpuResource* findAndRefScratchResource(const GrScratchKey& scratchKey,
132 size_t resourceSize,
133 uint32_t flags);
halcanary9d524f22016-03-29 09:03:52 -0700134
bsalomon8b79d232014-11-10 10:19:06 -0800135#ifdef SK_DEBUG
136 // This is not particularly fast and only used for validation, so debug only.
bsalomon7775c852014-12-30 12:50:52 -0800137 int countScratchEntriesForKey(const GrScratchKey& scratchKey) const {
bsalomon8b79d232014-11-10 10:19:06 -0800138 return fScratchMap.countForKey(scratchKey);
139 }
140#endif
141
bsalomon71cb0c22014-11-14 12:10:14 -0800142 /**
bsalomon8718aaf2015-02-19 07:24:21 -0800143 * Find a resource that matches a unique key.
bsalomon71cb0c22014-11-14 12:10:14 -0800144 */
bsalomon8718aaf2015-02-19 07:24:21 -0800145 GrGpuResource* findAndRefUniqueResource(const GrUniqueKey& key) {
146 GrGpuResource* resource = fUniqueHash.find(key);
bsalomon71cb0c22014-11-14 12:10:14 -0800147 if (resource) {
bsalomon9f2d1572015-02-17 11:47:40 -0800148 this->refAndMakeResourceMRU(resource);
bsalomon71cb0c22014-11-14 12:10:14 -0800149 }
150 return resource;
bsalomon8b79d232014-11-10 10:19:06 -0800151 }
152
bsalomon71cb0c22014-11-14 12:10:14 -0800153 /**
bsalomon8718aaf2015-02-19 07:24:21 -0800154 * Query whether a unique key exists in the cache.
bsalomon71cb0c22014-11-14 12:10:14 -0800155 */
bsalomon8718aaf2015-02-19 07:24:21 -0800156 bool hasUniqueKey(const GrUniqueKey& key) const {
157 return SkToBool(fUniqueHash.find(key));
bsalomon8b79d232014-11-10 10:19:06 -0800158 }
bsalomonbcf0a522014-10-08 08:40:09 -0700159
bsalomon8718aaf2015-02-19 07:24:21 -0800160 /** Purges resources to become under budget and processes resources with invalidated unique
bsalomon23e619c2015-02-06 11:54:28 -0800161 keys. */
bsalomon3f324322015-04-08 11:01:54 -0700162 void purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -0800163
bsalomon71cb0c22014-11-14 12:10:14 -0800164 /** Purges all resources that don't have external owners. */
165 void purgeAllUnlocked();
166
bsalomonb77a9072016-09-07 10:02:04 -0700167 /** Returns true if the cache would like a flush to occur in order to make more resources
168 purgeable. */
169 bool requestsFlush() const { return fRequestFlush; }
bsalomon71cb0c22014-11-14 12:10:14 -0800170
bsalomonb77a9072016-09-07 10:02:04 -0700171 enum FlushType {
172 kExternal,
173 kImmediateMode,
174 kCacheRequested,
175 };
176 void notifyFlushOccurred(FlushType);
bsalomon71cb0c22014-11-14 12:10:14 -0800177
robertphillips60029a52015-11-09 13:51:06 -0800178#if GR_CACHE_STATS
179 struct Stats {
180 int fTotal;
181 int fNumPurgeable;
182 int fNumNonPurgeable;
183
184 int fScratch;
kkinnunen2e6055b2016-04-22 01:48:29 -0700185 int fWrapped;
robertphillips60029a52015-11-09 13:51:06 -0800186 size_t fUnbudgetedSize;
187
188 Stats() { this->reset(); }
189
190 void reset() {
191 fTotal = 0;
192 fNumPurgeable = 0;
193 fNumNonPurgeable = 0;
194 fScratch = 0;
kkinnunen2e6055b2016-04-22 01:48:29 -0700195 fWrapped = 0;
robertphillips60029a52015-11-09 13:51:06 -0800196 fUnbudgetedSize = 0;
197 }
198
199 void update(GrGpuResource* resource) {
200 if (resource->cacheAccess().isScratch()) {
201 ++fScratch;
202 }
kkinnunen2e6055b2016-04-22 01:48:29 -0700203 if (resource->resourcePriv().refsWrappedObjects()) {
204 ++fWrapped;
robertphillips60029a52015-11-09 13:51:06 -0800205 }
bsalomon5ec26ae2016-02-25 08:33:02 -0800206 if (SkBudgeted::kNo == resource->resourcePriv().isBudgeted()) {
robertphillips60029a52015-11-09 13:51:06 -0800207 fUnbudgetedSize += resource->gpuMemorySize();
208 }
209 }
210 };
211
212 void getStats(Stats*) const;
213
mtkleinb9eb4ac2015-02-02 18:26:03 -0800214 void dumpStats(SkString*) const;
joshualittdc5685a2015-12-02 14:08:25 -0800215
216 void dumpStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* value) const;
bsalomon71cb0c22014-11-14 12:10:14 -0800217#endif
218
bsalomonddf30e62015-02-19 11:38:44 -0800219 // This function is for unit testing and is only defined in test tools.
220 void changeTimestamp(uint32_t newTimestamp);
221
ericrk0a5fa482015-09-15 14:16:10 -0700222 // Enumerates all cached resources and dumps their details to traceMemoryDump.
223 void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const;
224
bsalomonc8dc1f72014-08-21 13:02:13 -0700225private:
bsalomon71cb0c22014-11-14 12:10:14 -0800226 ///////////////////////////////////////////////////////////////////////////
227 /// @name Methods accessible via ResourceAccess
228 ////
229 void insertResource(GrGpuResource*);
230 void removeResource(GrGpuResource*);
bsalomon3f324322015-04-08 11:01:54 -0700231 void notifyCntReachedZero(GrGpuResource*, uint32_t flags);
bsalomon71cb0c22014-11-14 12:10:14 -0800232 void didChangeGpuMemorySize(const GrGpuResource*, size_t oldSize);
bsalomonf99e9612015-02-19 08:24:16 -0800233 void changeUniqueKey(GrGpuResource*, const GrUniqueKey&);
234 void removeUniqueKey(GrGpuResource*);
bsalomon10e23ca2014-11-25 05:52:06 -0800235 void willRemoveScratchKey(const GrGpuResource*);
bsalomon84c8e622014-11-17 09:33:27 -0800236 void didChangeBudgetStatus(GrGpuResource*);
bsalomon9f2d1572015-02-17 11:47:40 -0800237 void refAndMakeResourceMRU(GrGpuResource*);
bsalomon71cb0c22014-11-14 12:10:14 -0800238 /// @}
239
bsalomon3f324322015-04-08 11:01:54 -0700240 void resetFlushTimestamps();
bsalomon8718aaf2015-02-19 07:24:21 -0800241 void processInvalidUniqueKeys(const SkTArray<GrUniqueKeyInvalidatedMessage>&);
bsalomonf320e042015-02-17 15:09:34 -0800242 void addToNonpurgeableArray(GrGpuResource*);
243 void removeFromNonpurgeableArray(GrGpuResource*);
244 bool overBudget() const { return fBudgetedBytes > fMaxBytes || fBudgetedCount > fMaxCount; }
bsalomon71cb0c22014-11-14 12:10:14 -0800245
robertphillips6e83ac72015-08-13 05:19:14 -0700246 bool wouldFit(size_t bytes) {
halcanary9d524f22016-03-29 09:03:52 -0700247 return fBudgetedBytes+bytes <= fMaxBytes && fBudgetedCount+1 <= fMaxCount;
robertphillips6e83ac72015-08-13 05:19:14 -0700248 }
249
bsalomonddf30e62015-02-19 11:38:44 -0800250 uint32_t getNextTimestamp();
251
bsalomon16961262014-08-26 14:01:07 -0700252#ifdef SK_DEBUG
bsalomonf320e042015-02-17 15:09:34 -0800253 bool isInCache(const GrGpuResource* r) const;
bsalomon71cb0c22014-11-14 12:10:14 -0800254 void validate() const;
255#else
256 void validate() const {}
bsalomon16961262014-08-26 14:01:07 -0700257#endif
258
bsalomon71cb0c22014-11-14 12:10:14 -0800259 class AutoValidate;
260
bsalomonbcf0a522014-10-08 08:40:09 -0700261 class AvailableForScratchUse;
bsalomon744998e2014-08-28 09:54:34 -0700262
bsalomon744998e2014-08-28 09:54:34 -0700263 struct ScratchMapTraits {
bsalomon7775c852014-12-30 12:50:52 -0800264 static const GrScratchKey& GetKey(const GrGpuResource& r) {
bsalomon3582d3e2015-02-13 14:20:05 -0800265 return r.resourcePriv().getScratchKey();
bsalomon744998e2014-08-28 09:54:34 -0700266 }
267
bsalomon7775c852014-12-30 12:50:52 -0800268 static uint32_t Hash(const GrScratchKey& key) { return key.hash(); }
bsalomon744998e2014-08-28 09:54:34 -0700269 };
bsalomon7775c852014-12-30 12:50:52 -0800270 typedef SkTMultiMap<GrGpuResource, GrScratchKey, ScratchMapTraits> ScratchMap;
bsalomon744998e2014-08-28 09:54:34 -0700271
bsalomon8718aaf2015-02-19 07:24:21 -0800272 struct UniqueHashTraits {
273 static const GrUniqueKey& GetKey(const GrGpuResource& r) { return r.getUniqueKey(); }
bsalomon8b79d232014-11-10 10:19:06 -0800274
bsalomon8718aaf2015-02-19 07:24:21 -0800275 static uint32_t Hash(const GrUniqueKey& key) { return key.hash(); }
bsalomon8b79d232014-11-10 10:19:06 -0800276 };
bsalomon8718aaf2015-02-19 07:24:21 -0800277 typedef SkTDynamicHash<GrGpuResource, GrUniqueKey, UniqueHashTraits> UniqueHash;
bsalomon8b79d232014-11-10 10:19:06 -0800278
bsalomon9f2d1572015-02-17 11:47:40 -0800279 static bool CompareTimestamp(GrGpuResource* const& a, GrGpuResource* const& b) {
280 return a->cacheAccess().timestamp() < b->cacheAccess().timestamp();
281 }
bsalomon23e619c2015-02-06 11:54:28 -0800282
bsalomon9f2d1572015-02-17 11:47:40 -0800283 static int* AccessResourceIndex(GrGpuResource* const& res) {
284 return res->cacheAccess().accessCacheIndex();
285 }
286
bsalomon8718aaf2015-02-19 07:24:21 -0800287 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage>::Inbox InvalidUniqueKeyInbox;
bsalomon9f2d1572015-02-17 11:47:40 -0800288 typedef SkTDPQueue<GrGpuResource*, CompareTimestamp, AccessResourceIndex> PurgeableQueue;
bsalomonf320e042015-02-17 15:09:34 -0800289 typedef SkTDArray<GrGpuResource*> ResourceArray;
bsalomon9f2d1572015-02-17 11:47:40 -0800290
291 // Whenever a resource is added to the cache or the result of a cache lookup, fTimestamp is
292 // assigned as the resource's timestamp and then incremented. fPurgeableQueue orders the
293 // purgeable resources by this value, and thus is used to purge resources in LRU order.
294 uint32_t fTimestamp;
295 PurgeableQueue fPurgeableQueue;
bsalomonf320e042015-02-17 15:09:34 -0800296 ResourceArray fNonpurgeableResources;
bsalomon9f2d1572015-02-17 11:47:40 -0800297
bsalomon744998e2014-08-28 09:54:34 -0700298 // This map holds all resources that can be used as scratch resources.
bsalomon8b79d232014-11-10 10:19:06 -0800299 ScratchMap fScratchMap;
bsalomon8718aaf2015-02-19 07:24:21 -0800300 // This holds all resources that have unique keys.
301 UniqueHash fUniqueHash;
bsalomon71cb0c22014-11-14 12:10:14 -0800302
303 // our budget, used in purgeAsNeeded()
304 int fMaxCount;
305 size_t fMaxBytes;
bsalomon3f324322015-04-08 11:01:54 -0700306 int fMaxUnusedFlushes;
bsalomon71cb0c22014-11-14 12:10:14 -0800307
308#if GR_CACHE_STATS
309 int fHighWaterCount;
310 size_t fHighWaterBytes;
bsalomondace19e2014-11-17 07:34:06 -0800311 int fBudgetedHighWaterCount;
312 size_t fBudgetedHighWaterBytes;
bsalomon71cb0c22014-11-14 12:10:14 -0800313#endif
314
bsalomondace19e2014-11-17 07:34:06 -0800315 // our current stats for all resources
bsalomonf320e042015-02-17 15:09:34 -0800316 SkDEBUGCODE(int fCount;)
bsalomon71cb0c22014-11-14 12:10:14 -0800317 size_t fBytes;
318
bsalomondace19e2014-11-17 07:34:06 -0800319 // our current stats for resources that count against the budget
320 int fBudgetedCount;
321 size_t fBudgetedBytes;
322
bsalomonb77a9072016-09-07 10:02:04 -0700323 bool fRequestFlush;
bsalomon71cb0c22014-11-14 12:10:14 -0800324
bsalomon3f324322015-04-08 11:01:54 -0700325 // We keep track of the "timestamps" of the last n flushes. If a resource hasn't been used in
326 // that time then we well preemptively purge it to reduce memory usage.
327 uint32_t* fFlushTimestamps;
328 int fLastFlushTimestampIndex;
329
bsalomon8718aaf2015-02-19 07:24:21 -0800330 InvalidUniqueKeyInbox fInvalidUniqueKeyInbox;
bsalomon3f324322015-04-08 11:01:54 -0700331
332 // This resource is allowed to be in the nonpurgeable array for the sake of validate() because
333 // we're in the midst of converting it to purgeable status.
334 SkDEBUGCODE(GrGpuResource* fNewlyPurgeableResourceForValidation;)
robertphillips63926682015-08-20 09:39:02 -0700335
336 bool fPreferVRAMUseOverFlushes;
bsalomonc8dc1f72014-08-21 13:02:13 -0700337};
338
bsalomon0ea80f42015-02-11 10:49:59 -0800339class GrResourceCache::ResourceAccess {
bsalomon71cb0c22014-11-14 12:10:14 -0800340private:
bsalomon0ea80f42015-02-11 10:49:59 -0800341 ResourceAccess(GrResourceCache* cache) : fCache(cache) { }
bsalomon71cb0c22014-11-14 12:10:14 -0800342 ResourceAccess(const ResourceAccess& that) : fCache(that.fCache) { }
343 ResourceAccess& operator=(const ResourceAccess&); // unimpl
344
345 /**
346 * Insert a resource into the cache.
347 */
348 void insertResource(GrGpuResource* resource) { fCache->insertResource(resource); }
349
350 /**
351 * Removes a resource from the cache.
352 */
353 void removeResource(GrGpuResource* resource) { fCache->removeResource(resource); }
354
355 /**
bsalomon3f324322015-04-08 11:01:54 -0700356 * Notifications that should be sent to the cache when the ref/io cnt status of resources
357 * changes.
bsalomon71cb0c22014-11-14 12:10:14 -0800358 */
bsalomon3f324322015-04-08 11:01:54 -0700359 enum RefNotificationFlags {
360 /** All types of refs on the resource have reached zero. */
361 kAllCntsReachedZero_RefNotificationFlag = 0x1,
362 /** The normal (not pending IO type) ref cnt has reached zero. */
363 kRefCntReachedZero_RefNotificationFlag = 0x2,
364 };
365 /**
366 * Called by GrGpuResources when they detect that their ref/io cnts have reached zero. When the
367 * normal ref cnt reaches zero the flags that are set should be:
368 * a) kRefCntReachedZero if a pending IO cnt is still non-zero.
369 * b) (kRefCntReachedZero | kAllCntsReachedZero) when all pending IO cnts are also zero.
370 * kAllCntsReachedZero is set by itself if a pending IO cnt is decremented to zero and all the
371 * the other cnts are already zero.
372 */
373 void notifyCntReachedZero(GrGpuResource* resource, uint32_t flags) {
374 fCache->notifyCntReachedZero(resource, flags);
375 }
bsalomon71cb0c22014-11-14 12:10:14 -0800376
377 /**
378 * Called by GrGpuResources when their sizes change.
379 */
380 void didChangeGpuMemorySize(const GrGpuResource* resource, size_t oldSize) {
381 fCache->didChangeGpuMemorySize(resource, oldSize);
382 }
383
384 /**
bsalomonf99e9612015-02-19 08:24:16 -0800385 * Called by GrGpuResources to change their unique keys.
bsalomon71cb0c22014-11-14 12:10:14 -0800386 */
bsalomonf99e9612015-02-19 08:24:16 -0800387 void changeUniqueKey(GrGpuResource* resource, const GrUniqueKey& newKey) {
388 fCache->changeUniqueKey(resource, newKey);
389 }
bsalomon71cb0c22014-11-14 12:10:14 -0800390
bsalomon10e23ca2014-11-25 05:52:06 -0800391 /**
bsalomonf99e9612015-02-19 08:24:16 -0800392 * Called by a GrGpuResource to remove its unique key.
bsalomon23e619c2015-02-06 11:54:28 -0800393 */
bsalomonf99e9612015-02-19 08:24:16 -0800394 void removeUniqueKey(GrGpuResource* resource) { fCache->removeUniqueKey(resource); }
bsalomon23e619c2015-02-06 11:54:28 -0800395
396 /**
397 * Called by a GrGpuResource when it removes its scratch key.
bsalomon10e23ca2014-11-25 05:52:06 -0800398 */
399 void willRemoveScratchKey(const GrGpuResource* resource) {
400 fCache->willRemoveScratchKey(resource);
401 }
bsalomon84c8e622014-11-17 09:33:27 -0800402
403 /**
404 * Called by GrGpuResources when they change from budgeted to unbudgeted or vice versa.
405 */
406 void didChangeBudgetStatus(GrGpuResource* resource) { fCache->didChangeBudgetStatus(resource); }
407
bsalomon71cb0c22014-11-14 12:10:14 -0800408 // No taking addresses of this type.
409 const ResourceAccess* operator&() const;
410 ResourceAccess* operator&();
411
bsalomon0ea80f42015-02-11 10:49:59 -0800412 GrResourceCache* fCache;
bsalomon71cb0c22014-11-14 12:10:14 -0800413
414 friend class GrGpuResource; // To access all the proxy inline methods.
bsalomon0ea80f42015-02-11 10:49:59 -0800415 friend class GrResourceCache; // To create this type.
bsalomon71cb0c22014-11-14 12:10:14 -0800416};
417
bsalomon0ea80f42015-02-11 10:49:59 -0800418inline GrResourceCache::ResourceAccess GrResourceCache::resourceAccess() {
bsalomon71cb0c22014-11-14 12:10:14 -0800419 return ResourceAccess(this);
420}
421
bsalomonc8dc1f72014-08-21 13:02:13 -0700422#endif