Index: src/gpu/GrTextContext.cpp |
diff --git a/src/gpu/GrTextContext.cpp b/src/gpu/GrTextContext.cpp |
index bc116714dad02b1d2a5393518bc9bd918cb5e451..d281173dca5d95d12a870e77784471b1220afb89 100644 |
--- a/src/gpu/GrTextContext.cpp |
+++ b/src/gpu/GrTextContext.cpp |
@@ -10,7 +10,7 @@ |
#include "SkAutoKern.h" |
#include "SkGlyphCache.h" |
-#include "SkGr.h" |
+#include "GrFontScaler.h" |
GrTextContext::GrTextContext(GrContext* context, const SkDeviceProperties& properties) : |
fContext(context), fDeviceProperties(properties), fDrawTarget(NULL) { |
@@ -69,7 +69,7 @@ GrFontScaler* GrTextContext::GetGrFontScaler(SkGlyphCache* cache) { |
scaler = (GrFontScaler*)auxData; |
} |
if (NULL == scaler) { |
- scaler = SkNEW_ARGS(SkGrFontScaler, (cache)); |
+ scaler = SkNEW_ARGS(GrFontScaler, (cache)); |
cache->setAuxProc(GlyphCacheAuxProc, scaler); |
} |