aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPlotMgr.h
diff options
context:
space:
mode:
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;
}