| Index: src/gpu/GrDistanceFieldTextContext.cpp
|
| diff --git a/src/gpu/GrDistanceFieldTextContext.cpp b/src/gpu/GrDistanceFieldTextContext.cpp
|
| index eb172af1b6c941c123d516f3c14b22498a0f64fd..2a439da4f27e5743171f8338fbeadb7d4720f0ce 100755
|
| --- a/src/gpu/GrDistanceFieldTextContext.cpp
|
| +++ b/src/gpu/GrDistanceFieldTextContext.cpp
|
| @@ -246,10 +246,10 @@ void GrDistanceFieldTextContext::onDrawText(GrRenderTarget* rt, const GrClip& cl
|
| const SkGlyph& glyph = glyphCacheProc(cache, &textPtr, 0, 0);
|
|
|
| SkFixed width = glyph.fAdvanceX + autokern.adjust(glyph);
|
| - positions.push_back(SkFixedToScalar(stopX + SkFixedMul_portable(origin, width)));
|
| + positions.push_back(SkFixedToScalar(stopX + SkFixedMul(origin, width)));
|
|
|
| SkFixed height = glyph.fAdvanceY;
|
| - positions.push_back(SkFixedToScalar(stopY + SkFixedMul_portable(origin, height)));
|
| + positions.push_back(SkFixedToScalar(stopY + SkFixedMul(origin, height)));
|
|
|
| stopX += width;
|
| stopY += height;
|
|
|