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

Unified Diff: include/gpu/GrEffectStage.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/GrDrawEffect.h ('k') | include/gpu/GrGpuResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrEffectStage.h
diff --git a/include/gpu/GrEffectStage.h b/include/gpu/GrEffectStage.h
index 65c7bebdc7056f7da58960ea61e489fd5c2cd73d..f4cee514176201c8516d00e8b73398f3f44d1c39 100644
--- a/include/gpu/GrEffectStage.h
+++ b/include/gpu/GrEffectStage.h
@@ -43,8 +43,8 @@ public:
static bool AreCompatible(const GrEffectStage& a, const GrEffectStage& b,
bool usingExplicitLocalCoords) {
- SkASSERT(NULL != a.fEffect.get());
- SkASSERT(NULL != b.fEffect.get());
+ SkASSERT(a.fEffect.get());
+ SkASSERT(b.fEffect.get());
if (!a.getEffect()->isEqual(*b.getEffect())) {
return false;
« no previous file with comments | « include/gpu/GrDrawEffect.h ('k') | include/gpu/GrGpuResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698