Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: include/gpu/gl/SkGLContextHelper.h

Issue 544233002: "NULL !=" = NULL (Closed) Base URL: https://skia.googlesource.com/skia.git@are
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/gpu/GrSurface.h ('k') | include/pipe/SkGPipe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/gl/SkGLContextHelper.h
diff --git a/include/gpu/gl/SkGLContextHelper.h b/include/gpu/gl/SkGLContextHelper.h
index 8eab62e52c8c1088be7d399d3daf40d78175378c..c4d9bdf9979c4165cd67f404d708711b0f716291 100644
--- a/include/gpu/gl/SkGLContextHelper.h
+++ b/include/gpu/gl/SkGLContextHelper.h
@@ -46,7 +46,7 @@ public:
virtual void swapBuffers() const = 0;
bool hasExtension(const char* extensionName) const {
- SkASSERT(NULL != fGL);
+ SkASSERT(fGL);
return fGL->hasExtension(extensionName);
}
« no previous file with comments | « include/gpu/GrSurface.h ('k') | include/pipe/SkGPipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698