| Index: src/gpu/GrTextContext.cpp
|
| diff --git a/src/gpu/GrTextContext.cpp b/src/gpu/GrTextContext.cpp
|
| index a2e245d7e56f708e48c9ecb272e72e98c4153a2d..0ef18aaeb2aaed2de32345d076f441befecc56e1 100644
|
| --- a/src/gpu/GrTextContext.cpp
|
| +++ b/src/gpu/GrTextContext.cpp
|
| @@ -17,7 +17,7 @@
|
| #include "SkGlyphCache.h"
|
| #include "SkGpuDevice.h"
|
| #include "SkGrPriv.h"
|
| -#include "SkTextBlob.h"
|
| +#include "SkTextBlobRunIterator.h"
|
| #include "SkTextMapStateProc.h"
|
| #include "SkTextToPathIter.h"
|
|
|
| @@ -116,7 +116,7 @@ void GrTextContext::drawTextBlob(GrDrawContext* dc, GrRenderTarget* rt,
|
| SkDrawFilter* drawFilter, const SkIRect& clipBounds) {
|
| SkPaint runPaint = skPaint;
|
|
|
| - SkTextBlob::RunIterator it(blob);
|
| + SkTextBlobRunIterator it(blob);
|
| for (;!it.done(); it.next()) {
|
| size_t textLen = it.glyphCount() * sizeof(uint16_t);
|
| const SkPoint& offset = it.offset();
|
|
|