Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 6ce8eed

Browse files
authored
[CP] [Impeller] Remove glyph pixel rounding during text frame conversion (#41285) (#41304)
Beta CP for 3.10.
1 parent d2391b9 commit 6ce8eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impeller/typographer/backends/skia/text_frame_skia.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ TextFrame TextFrameFromTextBlob(const sk_sp<SkTextBlob>& blob, Scalar scale) {
7676
: Glyph::Type::kPath;
7777

7878
text_run.AddGlyph(Glyph{glyphs[i], type, ToRect(glyph_bounds[i])},
79-
Point{point->x(), point->y()}.Round());
79+
Point{point->x(), point->y()});
8080
}
8181
break;
8282
}

0 commit comments

Comments
 (0)