| Index: src/gpu/GrPlotMgr.h
|
| diff --git a/src/gpu/GrPlotMgr.h b/src/gpu/GrPlotMgr.h
|
| index 4f79a2135ef19548aa34e75c068f3623bf036a85..1fdfa1ffb99adaf74c99105d9555cc2c5dc441b2 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;
|
| }
|
|
|
|
|