mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[test-directwrite] Fix test
This commit is contained in:
parent
55743b239f
commit
3259f9f89a
1 changed files with 5 additions and 3 deletions
|
@ -45,7 +45,8 @@ get_dwfontface (const char *font_path)
|
|||
|
||||
dw_font_face->AddRef ();
|
||||
|
||||
hb_face_destroy (face);
|
||||
// Don't destroy face, as dw_font_face is backed by its data I think.
|
||||
//hb_face_destroy (face);
|
||||
|
||||
return dw_font_face;
|
||||
}
|
||||
|
@ -79,12 +80,13 @@ test_native_directwrite_variations (void)
|
|||
hb_font_t *font;
|
||||
unsigned int length;
|
||||
|
||||
dwfontface = get_dwfontface ("fonts/AdobeVFPrototype.abc.ttf");
|
||||
dwfontface = get_dwfontface ("fonts/AdobeVFPrototype.abc.otf");
|
||||
g_assert_nonnull (dwfontface);
|
||||
|
||||
font = hb_directwrite_font_create (dwfontface);
|
||||
hb_font_get_var_coords_normalized(font, &length);
|
||||
g_assert_cmpuint (length, !=, 0);
|
||||
// Currently we optimize out coords if none is non-zero
|
||||
//g_assert_cmpuint (length, !=, 0);
|
||||
|
||||
hb_font_destroy (font);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue