From 97043299cb352f50f604878b7a1dc8ad127fc1c6 Mon Sep 17 00:00:00 2001 From: Ben Wagner Date: Thu, 23 Feb 2017 20:48:43 +0000 Subject: Revert "Add SkTypeface::getVariationDesignPosition." This reverts commit 0f3d0c37dbcaf4ec271d5fe847becc9b1aa6f537. Reason for revert: Original change's description: > Add SkTypeface::getVariationDesignPosition. > > Allow users to query a typeface's position in variation design space. > > Change-Id: I173ee9eefdddee6b2613435ebcc6b08c25b382ed > Reviewed-on: https://skia-review.googlesource.com/8684 > Commit-Queue: Ben Wagner > Reviewed-by: Mike Reed > TBR=bungeman@google.com,reed@google.com,reviews@skia.org,drott@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Change-Id: I484fe52c1f89e7b6d0024dcabf7c59d0e8b5b5e7 Reviewed-on: https://skia-review.googlesource.com/8929 Reviewed-by: Ben Wagner Commit-Queue: Ben Wagner --- tests/TypefaceTest.cpp | 79 -------------------------------------------------- 1 file changed, 79 deletions(-) (limited to 'tests/TypefaceTest.cpp') diff --git a/tests/TypefaceTest.cpp b/tests/TypefaceTest.cpp index 4786cc278c..2a3b32d2cf 100644 --- a/tests/TypefaceTest.cpp +++ b/tests/TypefaceTest.cpp @@ -6,9 +6,6 @@ */ #include "SkData.h" -#include "SkFixed.h" -#include "SkFontMgr.h" -#include "SkMakeUnique.h" #include "SkOTTable_OS_2.h" #include "SkSFNTHeader.h" #include "SkStream.h" @@ -90,77 +87,6 @@ DEF_TEST(TypefaceStyle, reporter) { } } -DEF_TEST(TypefaceAxes, reporter) { - std::unique_ptr distortable(GetResourceAsStream("/fonts/Distortable.ttf")); - if (!distortable) { - REPORT_FAILURE(reporter, "distortable", SkString()); - return; - } - - sk_sp fm = SkFontMgr::RefDefault(); - const SkFontArguments::VariationPosition::Coordinate position[] = { - { SkSetFourByteTag('w','g','h','t'), SK_ScalarSqrt2 } - }; - SkFontArguments params; - params.setVariationDesignPosition({position, SK_ARRAY_COUNT(position)}); - // TODO: if axes are set and the back-end doesn't support them, should we create the typeface? - sk_sp typeface(fm->createFromStream(distortable.release(), params)); - - int count = typeface->getVariationDesignPosition(nullptr, 0); - if (count == -1) { - return; - } - REPORTER_ASSERT(reporter, count == SK_ARRAY_COUNT(position)); - - SkFontArguments::VariationPosition::Coordinate positionRead[SK_ARRAY_COUNT(position)]; - count = typeface->getVariationDesignPosition(positionRead, SK_ARRAY_COUNT(positionRead)); - REPORTER_ASSERT(reporter, count == SK_ARRAY_COUNT(position)); - - REPORTER_ASSERT(reporter, positionRead[0].axis == position[0].axis); - - // Convert to fixed for "almost equal". - SkFixed fixedRead = SkScalarToFixed(positionRead[0].value); - SkFixed fixedOriginal = SkScalarToFixed(position[0].value); - REPORTER_ASSERT(reporter, fixedRead == fixedOriginal); -} - -DEF_TEST(TypefaceVariationIndex, reporter) { - std::unique_ptr distortable(GetResourceAsStream("/fonts/Distortable.ttf")); - if (!distortable) { - REPORT_FAILURE(reporter, "distortable", SkString()); - return; - } - - sk_sp fm = SkFontMgr::RefDefault(); - SkFontArguments params; - // The first named variation position in Distortable is 'Thin'. - params.setCollectionIndex(0x00010000); - sk_sp typeface(fm->createFromStream(distortable.release(), params)); - if (!typeface) { - // FreeType is the only weird thing that supports this, Skia just needs to make sure if it - // gets one of these things make sense. - return; - } - - int count = typeface->getVariationDesignPosition(nullptr, 0); - if (!(count == 1)) { - REPORT_FAILURE(reporter, "count == 1", SkString()); - return; - } - - SkFontArguments::VariationPosition::Coordinate positionRead[1]; - count = typeface->getVariationDesignPosition(positionRead, SK_ARRAY_COUNT(positionRead)); - if (count == -1) { - return; - } - if (!(count == 1)) { - REPORT_FAILURE(reporter, "count == 1", SkString()); - return; - } - REPORTER_ASSERT(reporter, positionRead[0].axis == SkSetFourByteTag('w','g','h','t')); - REPORTER_ASSERT(reporter, positionRead[0].value == 0.5); -} - DEF_TEST(Typeface, reporter) { sk_sp t1(SkTypeface::MakeFromName(nullptr, SkFontStyle())); @@ -208,11 +134,6 @@ protected: SK_ABORT("unimplemented"); return nullptr; } - int onGetVariationDesignPosition(SkFontArguments::VariationPosition::Coordinate coordinates[], - int coordinateCount) const override - { - return 0; - } int onGetTableTags(SkFontTableTag tags[]) const override { return 0; } size_t onGetTableData(SkFontTableTag, size_t, size_t, void*) const override { return 0; } }; -- cgit v1.2.3