aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-03-16 08:39:41 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-16 08:39:42 -0700
commit2691d76a06e1af6282f8b3a3140cc93361be10c4 (patch)
tree61ce9609bafd5df2b6303cf853542ac3dc77247e /include/gpu
parent935f1b1a20f673b81e78bec913cd702ffc793c99 (diff)
Use std::unique_ptr.
Diffstat (limited to 'include/gpu')
-rw-r--r--include/gpu/gl/SkGLContext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gpu/gl/SkGLContext.h b/include/gpu/gl/SkGLContext.h
index ddf5dc080a..fe41a606ef 100644
--- a/include/gpu/gl/SkGLContext.h
+++ b/include/gpu/gl/SkGLContext.h
@@ -25,7 +25,7 @@ public:
const GrGLInterface* gl() const { return fGL.get(); }
- bool fenceSyncSupport() const { return SkToBool(fFenceSync); }
+ bool fenceSyncSupport() const { return fFenceSync != nullptr; }
bool getMaxGpuFrameLag(int* maxFrameLag) const {
if (!fFenceSync) {