| Index: src/gpu/GrPlotMgr.h
|
| diff --git a/src/gpu/GrPlotMgr.h b/src/gpu/GrPlotMgr.h
|
| index 8d55ed0b9c7d398d490cad7e8b3d0818fc77764d..1441611327403524ae1546333efc9726e4430114 100644
|
| --- a/src/gpu/GrPlotMgr.h
|
| +++ b/src/gpu/GrPlotMgr.h
|
| @@ -9,7 +9,6 @@
|
| #define GrPlotMgr_DEFINED
|
|
|
| #include "GrTypes.h"
|
| -#include "GrPoint.h"
|
| #include "SkTypes.h"
|
|
|
| class GrPlotMgr : SkNoncopyable {
|
| @@ -35,7 +34,7 @@ public:
|
| sk_bzero(fBusy, fDim.fX * fDim.fY);
|
| }
|
|
|
| - bool newPlot(GrIPoint16* loc) {
|
| + bool newPlot(SkIPoint16* loc) {
|
| char* busy = fBusy;
|
| for (int y = 0; y < fDim.fY; y++) {
|
| for (int x = 0; x < fDim.fX; x++) {
|
| @@ -68,7 +67,7 @@ private:
|
| };
|
| char fStorage[STORAGE];
|
| char* fBusy;
|
| - GrIPoint16 fDim;
|
| + SkIPoint16 fDim;
|
| };
|
|
|
| #endif
|
|
|