summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/gpu/GrPlotMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/gpu/GrPlotMgr.h')
-rw-r--r--chromium/third_party/skia/src/gpu/GrPlotMgr.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/chromium/third_party/skia/src/gpu/GrPlotMgr.h b/chromium/third_party/skia/src/gpu/GrPlotMgr.h
index 6ea6086b06c..14416113274 100644
--- a/chromium/third_party/skia/src/gpu/GrPlotMgr.h
+++ b/chromium/third_party/skia/src/gpu/GrPlotMgr.h
@@ -9,10 +9,9 @@
#define GrPlotMgr_DEFINED
#include "GrTypes.h"
-#include "GrPoint.h"
#include "SkTypes.h"
-class GrPlotMgr : public SkNoncopyable {
+class GrPlotMgr : SkNoncopyable {
public:
GrPlotMgr(int width, int height) {
fDim.set(width, height);
@@ -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