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

Side by Side Diff: src/gpu/GrGpuResourceCacheAccess.h

Issue 1694943002: When a surface is backed by an external render target force a copy on image snap (Closed) Base URL: https://skia.googlesource.com/skia.git@imgcopy
Patch Set: test git config branch.nollvm.skip-deps-uploads True Created 4 years, 10 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 | « src/gpu/GrGpuResource.cpp ('k') | src/gpu/GrGpuResourcePriv.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef GrGpuResourceCacheAccess_DEFINED 9 #ifndef GrGpuResourceCacheAccess_DEFINED
10 #define GrGpuResourceCacheAccess_DEFINED 10 #define GrGpuResourceCacheAccess_DEFINED
(...skipping 13 matching lines...) Expand all
24 /** 24 /**
25 * Is the resource currently cached as scratch? This means it is cached, has a valid scratch 25 * Is the resource currently cached as scratch? This means it is cached, has a valid scratch
26 * key, and does not have a unique key. 26 * key, and does not have a unique key.
27 */ 27 */
28 bool isScratch() const { 28 bool isScratch() const {
29 return !fResource->getUniqueKey().isValid() && fResource->fScratchKey.is Valid() && 29 return !fResource->getUniqueKey().isValid() && fResource->fScratchKey.is Valid() &&
30 SkBudgeted::kYes == fResource->resourcePriv().isBudgeted(); 30 SkBudgeted::kYes == fResource->resourcePriv().isBudgeted();
31 } 31 }
32 32
33 /** 33 /**
34 * Is the resource object wrapping an externally allocated GPU resource?
35 */
36 bool isExternal() const { return fResource->isExternal(); }
37
38 /**
39 * Is the resource object wrapping an externally allocated GPU resource that Skia has not taken 34 * Is the resource object wrapping an externally allocated GPU resource that Skia has not taken
40 * ownership of. 35 * ownership of.
41 */ 36 */
42 bool isBorrowed() const { return GrGpuResource::kBorrowed_LifeCycle == fReso urce->fLifeCycle; } 37 bool isBorrowed() const { return GrGpuResource::kBorrowed_LifeCycle == fReso urce->fLifeCycle; }
43 38
44 /** 39 /**
45 * Is the resource object wrapping an externally allocated GPU resource that Skia has taken 40 * Is the resource object wrapping an externally allocated GPU resource that Skia has taken
46 * ownership of. 41 * ownership of.
47 */ 42 */
48 bool isAdopted() const { return GrGpuResource::kAdopted_LifeCycle == fResour ce->fLifeCycle; } 43 bool isAdopted() const { return GrGpuResource::kAdopted_LifeCycle == fResour ce->fLifeCycle; }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 friend void test_unbudgeted_to_scratch(skiatest::Reporter* reporter); // for unit testing 88 friend void test_unbudgeted_to_scratch(skiatest::Reporter* reporter); // for unit testing
94 }; 89 };
95 90
96 inline GrGpuResource::CacheAccess GrGpuResource::cacheAccess() { return CacheAcc ess(this); } 91 inline GrGpuResource::CacheAccess GrGpuResource::cacheAccess() { return CacheAcc ess(this); }
97 92
98 inline const GrGpuResource::CacheAccess GrGpuResource::cacheAccess() const { 93 inline const GrGpuResource::CacheAccess GrGpuResource::cacheAccess() const {
99 return CacheAccess(const_cast<GrGpuResource*>(this)); 94 return CacheAccess(const_cast<GrGpuResource*>(this));
100 } 95 }
101 96
102 #endif 97 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrGpuResource.cpp ('k') | src/gpu/GrGpuResourcePriv.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698