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

Unified Diff: src/gpu/GrRectanizer.h

Issue 22850006: Replace uses of GrAssert by SkASSERT. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 7 years, 4 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 | « src/gpu/GrPlotMgr.h ('k') | src/gpu/GrRectanizer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrRectanizer.h
diff --git a/src/gpu/GrRectanizer.h b/src/gpu/GrRectanizer.h
index bacf4fddac42bcf810adfbd4d5ed660ea9ab91a8..dc479f1c8d28227f2cf40d77b94c255ca056824b 100644
--- a/src/gpu/GrRectanizer.h
+++ b/src/gpu/GrRectanizer.h
@@ -20,8 +20,8 @@ public:
class GrRectanizer {
public:
GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
- GrAssert(width >= 0);
- GrAssert(height >= 0);
+ SkASSERT(width >= 0);
+ SkASSERT(height >= 0);
}
virtual ~GrRectanizer() {}
« no previous file with comments | « src/gpu/GrPlotMgr.h ('k') | src/gpu/GrRectanizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698