Move HB_NO_VAR to a better place in hb-font.cc

Needed for other works
This commit is contained in:
Ebrahim Byagowi 2019-08-14 22:37:00 +04:30 committed by GitHub
parent 1cc844da66
commit bc27f86ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1815,6 +1815,7 @@ hb_font_get_ptem (hb_font_t *font)
return font->ptem;
}
#ifndef HB_NO_VAR
/*
* Variations
*/
@ -1830,7 +1831,6 @@ _hb_font_adopt_var_coords_normalized (hb_font_t *font,
font->num_coords = coords_length;
}
#ifndef HB_NO_VAR
/**
* hb_font_set_variations:
*
@ -1909,7 +1909,6 @@ hb_font_set_var_named_instance (hb_font_t *font,
hb_font_set_var_coords_design (font, coords, coords_length);
free (coords);
}
#endif
/**
* hb_font_set_var_coords_normalized:
@ -1951,7 +1950,7 @@ hb_font_get_var_coords_normalized (hb_font_t *font,
return font->coords;
}
#endif
#ifndef HB_DISABLE_DEPRECATED
/*