Index: include/gpu/GrBackendEffectFactory.h |
diff --git a/include/gpu/GrBackendEffectFactory.h b/include/gpu/GrBackendEffectFactory.h |
index 28114436de9b8a1bbf7210be340896eaad14eb9c..6a18169de0b3832eb76cd4aa1a32b594c08290bf 100644 |
--- a/include/gpu/GrBackendEffectFactory.h |
+++ b/include/gpu/GrBackendEffectFactory.h |
@@ -73,7 +73,7 @@ protected: |
// atomic inc returns the old value not the incremented value. So we add |
// 1 to the returned value. |
int32_t id = sk_atomic_inc(&fCurrEffectClassID) + 1; |
- GrAssert(id < (1 << kClassIDBits)); |
+ SkASSERT(id < (1 << kClassIDBits)); |
return static_cast<EffectKey>(id); |
} |