aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRemoteGlyphCache.cpp
diff options
context:
space:
mode:
authorGravatar Khushal <khushalsagar@chromium.org>2018-05-31 11:15:13 -0700
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-31 20:12:44 +0000
commit458f40a43e12260a3b73ee170b30d966d6c1fe56 (patch)
treec8129d44757148b5926726dbcb4faeaa942631fa /src/core/SkRemoteGlyphCache.cpp
parent82cecb6027e776f18840c4d983f838a285d67a5d (diff)
font remoting: Fix errors with sub-pixel positioning mismatch.
1) Use correct offset from SkTextBlobRunIterator. Only kHorizontal_Positioning needs to use the y offset specified on the run. 2) Use the same mapping function from SkFindAndPlaceGlyph for mapping the glyph position from transform for the run. This avoids minor rounding differences between analysis and draw. R=bungeman@google.com,herb@google.com Bug:829622 Change-Id: Iaef74a8d01f0850ce042149458b2ea795c2a2b61 Reviewed-on: https://skia-review.googlesource.com/131169 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Khusal Sagar <khushalsagar@chromium.org>
Diffstat (limited to 'src/core/SkRemoteGlyphCache.cpp')
-rw-r--r--src/core/SkRemoteGlyphCache.cpp45
1 files changed, 8 insertions, 37 deletions
diff --git a/src/core/SkRemoteGlyphCache.cpp b/src/core/SkRemoteGlyphCache.cpp
index 17edc83064..1d52f46dbd 100644
--- a/src/core/SkRemoteGlyphCache.cpp
+++ b/src/core/SkRemoteGlyphCache.cpp
@@ -276,8 +276,6 @@ void SkTextBlobCacheDiffCanvas::processGlyphRun(
SkMatrix runMatrix{fDeviceMatrix};
runMatrix.preConcat(this->getTotalMatrix());
- runMatrix.preTranslate(position.x(), position.y());
- runMatrix.preTranslate(it.offset().x(), it.offset().y());
#if SK_SUPPORT_GPU
GrTextContext::Options options;
@@ -305,55 +303,28 @@ void SkTextBlobCacheDiffCanvas::processGlyphRun(
using PosFn = SkPoint(*)(int index, const SkScalar* pos);
PosFn posFn;
+ SkSTArenaAlloc<120> arena;
+ SkFindAndPlaceGlyph::MapperInterface* mapper = nullptr;
switch (it.positioning()) {
case SkTextBlob::kHorizontal_Positioning:
posFn = [](int index, const SkScalar* pos) {
return SkPoint{pos[index], 0};
};
-
+ mapper = SkFindAndPlaceGlyph::CreateMapper(
+ runMatrix, SkPoint::Make(position.x(), position.y() + it.offset().y()), 1,
+ &arena);
break;
-
case SkTextBlob::kFull_Positioning:
posFn = [](int index, const SkScalar* pos) {
return SkPoint{pos[2 * index], pos[2 * index + 1]};
};
+ mapper = SkFindAndPlaceGlyph::CreateMapper(runMatrix, position, 2, &arena);
break;
-
default:
posFn = nullptr;
SK_ABORT("unhandled positioning mode");
}
- using MapFn = SkPoint(*)(const SkMatrix& m, SkPoint pt);
- MapFn mapFn;
- switch ((int)runMatrix.getType()) {
- case SkMatrix::kIdentity_Mask:
- case SkMatrix::kTranslate_Mask:
- mapFn = [](const SkMatrix& m, SkPoint pt) {
- pt.offset(m.getTranslateX(), m.getTranslateY());
- return pt;
- };
- break;
- case SkMatrix::kScale_Mask:
- case SkMatrix::kScale_Mask | SkMatrix::kTranslate_Mask:
- mapFn = [](const SkMatrix& m, SkPoint pt) {
- return SkPoint{pt.x() * m.getScaleX() + m.getTranslateX(),
- pt.y() * m.getScaleY() + m.getTranslateY()};
- };
- break;
- case SkMatrix::kAffine_Mask | SkMatrix::kScale_Mask:
- case SkMatrix::kAffine_Mask | SkMatrix::kScale_Mask | SkMatrix::kTranslate_Mask:
- mapFn = [](const SkMatrix& m, SkPoint pt) {
- return SkPoint{
- pt.x() * m.getScaleX() + pt.y() * m.getSkewX() + m.getTranslateX(),
- pt.x() * m.getSkewY() + pt.y() * m.getScaleY() + m.getTranslateY()};
- };
- break;
- default:
- mapFn = nullptr;
- SK_ABORT("Bad matrix.");
- }
-
SkScalerContextRec deviceSpecificRec;
SkScalerContextEffects effects;
auto* glyphCacheState =
@@ -371,8 +342,8 @@ void SkTextBlobCacheDiffCanvas::processGlyphRun(
const uint16_t* glyphs = it.glyphs();
for (uint32_t index = 0; index < it.glyphCount(); index++) {
SkIPoint subPixelPos{0, 0};
- if (runPaint.isAntiAlias() && isSubpixel) {
- SkPoint glyphPos = mapFn(runMatrix, posFn(index, pos));
+ if (isSubpixel) {
+ SkPoint glyphPos = mapper->map(posFn(index, pos));
subPixelPos = SkFindAndPlaceGlyph::SubpixelAlignment(axisAlignment, glyphPos);
}