skia2/site/docs/dev/testing/fonts.md
Joe Gregorio 10d45b867f [docysserver] Move to the Hugo/Docsy set of files as the primary documentation.
Bug: skia:11799
Change-Id: Ic9e9bc6a91cf1a7c9166ca1eae4aec6b00eb5e2a
Docs-Preview: https://skia.org/?cl=391436
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/391436
Reviewed-by: Heather Miller <hcm@google.com>
2021-03-31 19:16:09 +00:00

990 B


title: "Fonts and GM Tests" linkTitle: "Fonts and GM Tests"


Overview

Each test in the gm directory draws a reference image. Their primary purpose is to detect when images change unexpectedly, indicating that a rendering bug has been introduced.

The gm tests have a secondary purpose: they detect when rendering is different across platforms and configurations.

GM font selection

Each gm specifies the typeface to use when drawing text. For now, to set the portable typeface on the paint, call:

ToolUtils::set_portable_typeface(SkPaint* , const char* name = nullptr,
SkFontStyle style = SkFontStyle());

To create a portable typeface, use:

SkTypeface* typeface = ToolUtils::create_portable_typeface(const char* name,
SkFontStyle style);

Eventually, both set_portable_typeface() and create_portable_typeface() will be removed. Instead, a test-wide SkFontMgr will be selected to choose portable fonts or resource fonts.