| Index: src/gpu/GrBitmapTextContext.cpp
|
| diff --git a/src/gpu/GrBitmapTextContext.cpp b/src/gpu/GrBitmapTextContext.cpp
|
| index dd01e7d2b8a4eca47825c042b8635b06da1c70bd..4eeb172aa80b899a3b8506cebe5683e63e5098de 100755
|
| --- a/src/gpu/GrBitmapTextContext.cpp
|
| +++ b/src/gpu/GrBitmapTextContext.cpp
|
| @@ -227,7 +227,6 @@ void GrBitmapTextContext::onDrawPosText(GrRenderTarget* rt, const GrClip& clip,
|
| const char* stop = text + byteLength;
|
| SkTextAlignProc alignProc(fSkPaint.getTextAlign());
|
| SkTextMapStateProc tmsProc(viewMatrix, offset, scalarsPerPosition);
|
| - SkScalar halfSampleX = 0, halfSampleY = 0;
|
|
|
| if (cache->isSubpixel()) {
|
| // maybe we should skip the rounding if linearText is set
|
| @@ -235,6 +234,8 @@ void GrBitmapTextContext::onDrawPosText(GrRenderTarget* rt, const GrClip& clip,
|
|
|
| SkFixed fxMask = ~0;
|
| SkFixed fyMask = ~0;
|
| + SkScalar halfSampleX = SkFixedToScalar(SkGlyph::kSubpixelRound);
|
| + SkScalar halfSampleY = SkFixedToScalar(SkGlyph::kSubpixelRound);
|
| if (kX_SkAxisAlignment == baseline) {
|
| fyMask = 0;
|
| halfSampleY = SK_ScalarHalf;
|
| @@ -310,8 +311,8 @@ void GrBitmapTextContext::onDrawPosText(GrRenderTarget* rt, const GrClip& clip,
|
| SkPoint tmsLoc;
|
| tmsProc(pos, &tmsLoc);
|
|
|
| - Sk48Dot16 fx = SkScalarTo48Dot16(tmsLoc.fX + SK_ScalarHalf); //halfSampleX;
|
| - Sk48Dot16 fy = SkScalarTo48Dot16(tmsLoc.fY + SK_ScalarHalf); //halfSampleY;
|
| + Sk48Dot16 fx = SkScalarTo48Dot16(tmsLoc.fX + SK_ScalarHalf);
|
| + Sk48Dot16 fy = SkScalarTo48Dot16(tmsLoc.fY + SK_ScalarHalf);
|
| this->appendGlyph(GrGlyph::Pack(glyph.getGlyphID(),
|
| glyph.getSubXFixed(),
|
| glyph.getSubYFixed(),
|
| @@ -334,8 +335,8 @@ void GrBitmapTextContext::onDrawPosText(GrRenderTarget* rt, const GrClip& clip,
|
| SkPoint alignLoc;
|
| alignProc(tmsLoc, glyph, &alignLoc);
|
|
|
| - Sk48Dot16 fx = SkScalarTo48Dot16(alignLoc.fX + SK_ScalarHalf); //halfSampleX;
|
| - Sk48Dot16 fy = SkScalarTo48Dot16(alignLoc.fY + SK_ScalarHalf); //halfSampleY;
|
| + Sk48Dot16 fx = SkScalarTo48Dot16(alignLoc.fX + SK_ScalarHalf);
|
| + Sk48Dot16 fy = SkScalarTo48Dot16(alignLoc.fY + SK_ScalarHalf);
|
| this->appendGlyph(GrGlyph::Pack(glyph.getGlyphID(),
|
| glyph.getSubXFixed(),
|
| glyph.getSubYFixed(),
|
|
|