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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gpu/GrPlotMgr.h b/src/gpu/GrPlotMgr.h
index 8d55ed0b9c..1441611327 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