aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar sugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-25 20:42:44 +0000
committerGravatar sugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-25 20:42:44 +0000
commitff57afc64b103e98941e44a05c2fd0c1e78188bc (patch)
tree69a57329d0a1b256a441d6d300f545f39846721c /src/gpu
parentd71fe99fe4d54230572223915166bea8efd67d85 (diff)
Fixed the hash key comparison function.
Review URL: https://codereview.appspot.com/7378065 git-svn-id: http://skia.googlecode.com/svn/trunk@7853 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrResourceCache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrResourceCache.h b/src/gpu/GrResourceCache.h
index dd8ba310fd..f05ba98231 100644
--- a/src/gpu/GrResourceCache.h
+++ b/src/gpu/GrResourceCache.h
@@ -132,7 +132,7 @@ private:
struct Key {
int compare(const HashedKey& hashedKey) const {
- return fHashedKey.compare(fHashedKey);
+ return fHashedKey.compare(hashedKey);
}
HashedKey fHashedKey;