Index: src/gpu/gl/GrGLIRect.h |
diff --git a/src/gpu/gl/GrGLIRect.h b/src/gpu/gl/GrGLIRect.h |
index f171cf1374c9ab0edd1bece82273d6153b872b28..44f5280fd69fe370729b7720a382b605dc802356 100644 |
--- a/src/gpu/gl/GrGLIRect.h |
+++ b/src/gpu/gl/GrGLIRect.h |
@@ -54,10 +54,10 @@ struct GrGLIRect { |
} |
fHeight = height; |
- GrAssert(fLeft >= 0); |
- GrAssert(fWidth >= 0); |
- GrAssert(fBottom >= 0); |
- GrAssert(fHeight >= 0); |
+ SkASSERT(fLeft >= 0); |
+ SkASSERT(fWidth >= 0); |
+ SkASSERT(fBottom >= 0); |
+ SkASSERT(fHeight >= 0); |
} |
bool contains(const GrGLIRect& glRect) const { |