aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGpuResourcePriv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrGpuResourcePriv.h')
-rw-r--r--src/gpu/GrGpuResourcePriv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrGpuResourcePriv.h b/src/gpu/GrGpuResourcePriv.h
index 62dc85059a..5324dccc22 100644
--- a/src/gpu/GrGpuResourcePriv.h
+++ b/src/gpu/GrGpuResourcePriv.h
@@ -44,10 +44,10 @@ public:
/**
* Does the resource count against the resource budget?
*/
- SkBudgeted isBudgeted() const {
+ bool isBudgeted() const {
bool ret = GrGpuResource::kCached_LifeCycle == fResource->fLifeCycle;
SkASSERT(ret || !fResource->getUniqueKey().isValid());
- return SkBudgeted(ret);
+ return ret;
}
/**