| Index: src/gpu/GrDistanceFieldTextContext.cpp
|
| diff --git a/src/gpu/GrDistanceFieldTextContext.cpp b/src/gpu/GrDistanceFieldTextContext.cpp
|
| index 2d2f9a14432dd7aae4a719e6469858f30bb8ef84..a66e9e6bac957a942a058c0cf41f86492c3952d6 100755
|
| --- a/src/gpu/GrDistanceFieldTextContext.cpp
|
| +++ b/src/gpu/GrDistanceFieldTextContext.cpp
|
| @@ -12,6 +12,7 @@
|
| #include "GrFontScaler.h"
|
| #include "SkGlyphCache.h"
|
| #include "GrIndexBuffer.h"
|
| +#include "GrStrokeInfo.h"
|
| #include "GrTextStrike.h"
|
| #include "GrTextStrike_impl.h"
|
| #include "SkDistanceFieldGen.h"
|
| @@ -247,8 +248,8 @@ void GrDistanceFieldTextContext::drawPackedGlyph(GrGlyph::PackedID packed,
|
| ctm.postTranslate(sx, sy);
|
| GrPaint tmpPaint(fPaint);
|
| am.setPreConcat(fContext, ctm, &tmpPaint);
|
| - SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
|
| - fContext->drawPath(tmpPaint, *glyph->fPath, stroke);
|
| + GrStrokeInfo strokeInfo(SkStrokeRec::kFill_InitStyle);
|
| + fContext->drawPath(tmpPaint, *glyph->fPath, strokeInfo);
|
| return;
|
| }
|
|
|
|
|