aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index 4656381c13..28369e9c08 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -1291,6 +1291,20 @@ static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions)
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
+#define PORTABLE_FONT_PREFIX "Toy Liberation "
+
+static sk_sp<SkTypeface> create_from_name(const char familyName[], SkFontStyle style) {
+ if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX)
+ && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) {
+ return sk_tool_utils::create_portable_typeface(familyName, style);
+ }
+ return nullptr;
+}
+
+#undef PORTABLE_FONT_PREFIX
+
+extern sk_sp<SkTypeface> (*gCreateTypefaceDelegate)(const char [], SkFontStyle );
+
int main(int argc, char** argv) {
#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && defined(SK_HAS_HEIF_LIBRARY)
android::ProcessState::self()->startThreadPool();
@@ -1343,6 +1357,7 @@ int main(int argc, char** argv) {
JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing.
SkAutoGraphics ag;
SkTaskGroup::Enabler enabled(FLAGS_threads);
+ gCreateTypefaceDelegate = &create_from_name;
if (nullptr == GetResourceAsData("images/color_wheel.png")) {
info("Some resources are missing. Do you need to set --resourcePath?\n");