diff options
author | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-02-25 15:55:13 +0000 |
---|---|---|
committer | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-02-25 15:55:13 +0000 |
commit | 9447103029273a9f8dd7f5997e8af7a1e3ee7488 (patch) | |
tree | 4caba4caacfc5ebbd77314f23b3cd2805ce1ffdf /tests | |
parent | 570ed6466c9b62031ebf8a36d2b242ee666f7d24 (diff) |
Always round text position correctly.
https://codereview.appspot.com/7383049/
Will require rebaseline of fontscaler GM.
Must add SK_IGNORE_SUBPIXEL_AXIS_ALIGN_FIX to Chromium
until ~150 layout tests can be rebaselined.
git-svn-id: http://skia.googlecode.com/svn/trunk@7842 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/FontHostTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FontHostTest.cpp b/tests/FontHostTest.cpp index 4cd7812eeb..5c43128257 100644 --- a/tests/FontHostTest.cpp +++ b/tests/FontHostTest.cpp @@ -145,7 +145,7 @@ static void test_advances(skiatest::Reporter* reporter) { char txt[] = "long.text.with.lots.of.dots."; for (size_t i = 0; i < SK_ARRAY_COUNT(faces); i++) { - SkTypeface* face = SkTypeface::CreateFromName(faces[i], SkTypeface::kNormal); + SkAutoTUnref<SkTypeface> face(SkTypeface::CreateFromName(faces[i], SkTypeface::kNormal)); paint.setTypeface(face); for (size_t j = 0; j < SK_ARRAY_COUNT(settings); j++) { |