Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: include/gpu/GrGpuResource.h

Issue 2301523003: Have GrSurfaceProxys and GrGpuResources draw from the same pool of unique ids (Closed)
Patch Set: Add test Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | include/private/GrSurfaceProxy.h » ('j') | include/private/GrSurfaceProxy.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGpuResource_DEFINED 8 #ifndef GrGpuResource_DEFINED
9 #define GrGpuResource_DEFINED 9 #define GrGpuResource_DEFINED
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 void removeUniqueKey(); 272 void removeUniqueKey();
273 void notifyAllCntsAreZero(CntType) const; 273 void notifyAllCntsAreZero(CntType) const;
274 bool notifyRefCountIsZero() const; 274 bool notifyRefCountIsZero() const;
275 void removeScratchKey(); 275 void removeScratchKey();
276 void makeBudgeted(); 276 void makeBudgeted();
277 void makeUnbudgeted(); 277 void makeUnbudgeted();
278 278
279 #ifdef SK_DEBUG 279 #ifdef SK_DEBUG
280 friend class GrGpu; // for assert in GrGpu to access getGpu 280 friend class GrGpu; // for assert in GrGpu to access getGpu
281 #endif 281 #endif
282 friend class GrSurfaceProxy; // for access to CreateUniqueID
bsalomon 2016/08/31 17:53:18 Is there a lighter weight way we could do this? I
robertphillips 2016/08/31 19:11:38 Done. Made it public.
282 283
283 static uint32_t CreateUniqueID(); 284 static uint32_t CreateUniqueID();
284 285
285 // An index into a heap when this resource is purgeable or an array when not . This is maintained 286 // An index into a heap when this resource is purgeable or an array when not . This is maintained
286 // by the cache. 287 // by the cache.
287 int fCacheArrayIndex; 288 int fCacheArrayIndex;
288 // This value reflects how recently this resource was accessed in the cache. This is maintained 289 // This value reflects how recently this resource was accessed in the cache. This is maintained
289 // by the cache. 290 // by the cache.
290 uint32_t fTimestamp; 291 uint32_t fTimestamp;
291 292
292 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0); 293 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0);
293 GrScratchKey fScratchKey; 294 GrScratchKey fScratchKey;
294 GrUniqueKey fUniqueKey; 295 GrUniqueKey fUniqueKey;
295 296
296 // This is not ref'ed but abandon() or release() will be called before the G rGpu object 297 // This is not ref'ed but abandon() or release() will be called before the G rGpu object
297 // is destroyed. Those calls set will this to NULL. 298 // is destroyed. Those calls set will this to NULL.
298 GrGpu* fGpu; 299 GrGpu* fGpu;
299 mutable size_t fGpuMemorySize; 300 mutable size_t fGpuMemorySize;
300 301
301 SkBudgeted fBudgeted; 302 SkBudgeted fBudgeted;
302 bool fRefsWrappedObjects; 303 bool fRefsWrappedObjects;
303 const uint32_t fUniqueID; 304 const uint32_t fUniqueID;
304 305
305 typedef GrIORef<GrGpuResource> INHERITED; 306 typedef GrIORef<GrGpuResource> INHERITED;
306 friend class GrIORef<GrGpuResource>; // to access notifyAllCntsAreZero and n otifyRefCntIsZero. 307 friend class GrIORef<GrGpuResource>; // to access notifyAllCntsAreZero and n otifyRefCntIsZero.
307 }; 308 };
308 309
309 #endif 310 #endif
OLDNEW
« no previous file with comments | « no previous file | include/private/GrSurfaceProxy.h » ('j') | include/private/GrSurfaceProxy.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698