aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPlotMgr.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/GrPlotMgr.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/GrPlotMgr.h')
-rw-r--r--src/gpu/GrPlotMgr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/GrPlotMgr.h b/src/gpu/GrPlotMgr.h
index 4f79a2135e..1fdfa1ffb9 100644
--- a/src/gpu/GrPlotMgr.h
+++ b/src/gpu/GrPlotMgr.h
@@ -53,14 +53,14 @@ public:
}
bool isBusy(int x, int y) const {
- GrAssert((unsigned)x < (unsigned)fDim.fX);
- GrAssert((unsigned)y < (unsigned)fDim.fY);
+ SkASSERT((unsigned)x < (unsigned)fDim.fX);
+ SkASSERT((unsigned)y < (unsigned)fDim.fY);
return fBusy[y * fDim.fX + x] != 0;
}
void freePlot(int x, int y) {
- GrAssert((unsigned)x < (unsigned)fDim.fX);
- GrAssert((unsigned)y < (unsigned)fDim.fY);
+ SkASSERT((unsigned)x < (unsigned)fDim.fX);
+ SkASSERT((unsigned)y < (unsigned)fDim.fY);
fBusy[y * fDim.fX + x] = false;
}