aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrRectanizer.h
diff options
context:
space:
mode:
authorGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-17 00:02:59 +0000
committerGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-17 00:02:59 +0000
commitf6de475e5cbd143f348ff7738919e397b7fe7f57 (patch)
tree8d8a123db2adbd7cbe6b55651b1c9117d6eafdb8 /src/gpu/GrRectanizer.h
parent069975678aaca6dc767e9fef3d743694443223f1 (diff)
Replace uses of GrAssert by SkASSERT.
R=bsalomon@google.com Review URL: https://codereview.chromium.org/22850006 git-svn-id: http://skia.googlecode.com/svn/trunk@10789 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/GrRectanizer.h')
-rw-r--r--src/gpu/GrRectanizer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrRectanizer.h b/src/gpu/GrRectanizer.h
index bacf4fddac..dc479f1c8d 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() {}