aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrResourceCache.cpp
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-19 23:18:52 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-19 23:18:52 +0000
commitf64c6842c15e1ba126639be7578e4642cb396987 (patch)
tree4d7091db554b6a61ce197cbf4ff4ebc2980dbf2d /src/gpu/GrResourceCache.cpp
parent13388e71645caa3e223a3b024efe103f7110f1a9 (diff)
Add a 'unique' method to SkRefCnt, document the usage, and add support.
std::shared_ptr has a method called 'unique' which captures the concept that a reference count of 1 is special, and can be used to optimize copy on write. It also has some undocumented need for memory barriers in certain situations and those needs are documented here. The motivation for looking into this is crbug.com/258499 . The use of the reference count in this manner is a benign race with both ref() and unref(). By introducing sk_atomic_unprotected_read, it is possible for Chromium to annotate this read to tell ThreadSanitizer that this is known. R=bsalomon@google.com Review URL: https://codereview.chromium.org/18770007 git-svn-id: http://skia.googlecode.com/svn/trunk@10221 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/GrResourceCache.cpp')
-rw-r--r--src/gpu/GrResourceCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrResourceCache.cpp b/src/gpu/GrResourceCache.cpp
index 03a4e899db..96b11aaafe 100644
--- a/src/gpu/GrResourceCache.cpp
+++ b/src/gpu/GrResourceCache.cpp
@@ -164,7 +164,7 @@ void GrResourceCache::attachToHead(GrResourceEntry* entry,
class GrTFindUnreffedFunctor {
public:
bool operator()(const GrResourceEntry* entry) const {
- return 1 == entry->resource()->getRefCnt();
+ return entry->resource()->unique();
}
};
@@ -338,7 +338,7 @@ void GrResourceCache::internalPurge(int extraCount, size_t extraBytes) {
}
GrResourceEntry* prev = iter.prev();
- if (1 == entry->fResource->getRefCnt()) {
+ if (entry->fResource->unique()) {
changed = true;
this->deleteResource(entry);
}