aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGpuResource.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-01-23 12:47:59 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-23 12:47:59 -0800
commit63c992f6c05ea728b5386de61d279f10eb7e08d9 (patch)
tree0ca9b96baedd9525e4def9a7dd9651c9dd773b47 /src/gpu/GrGpuResource.cpp
parent6a144345d742a53ffb15bbd83f2718022fca8df5 (diff)
Fix the speeling of "purgeable" in Gr code
TBR=robertphillips@google.com Review URL: https://codereview.chromium.org/874693002
Diffstat (limited to 'src/gpu/GrGpuResource.cpp')
-rw-r--r--src/gpu/GrGpuResource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrGpuResource.cpp b/src/gpu/GrGpuResource.cpp
index 15d5888cc0..6d250e4820 100644
--- a/src/gpu/GrGpuResource.cpp
+++ b/src/gpu/GrGpuResource.cpp
@@ -104,13 +104,13 @@ bool GrGpuResource::setContentKey(const GrContentKey& key) {
return true;
}
-void GrGpuResource::notifyIsPurgable() const {
+void GrGpuResource::notifyIsPurgeable() const {
if (this->wasDestroyed()) {
// We've already been removed from the cache. Goodbye cruel world!
SkDELETE(this);
} else {
GrGpuResource* mutableThis = const_cast<GrGpuResource*>(this);
- get_resource_cache2(fGpu)->resourceAccess().notifyPurgable(mutableThis);
+ get_resource_cache2(fGpu)->resourceAccess().notifyPurgeable(mutableThis);
}
}