Move HB_NO_VAR to a better place in hb-font.cc
Needed for other works
This commit is contained in:
parent
1cc844da66
commit
bc27f86ffe
|
@ -1815,6 +1815,7 @@ hb_font_get_ptem (hb_font_t *font)
|
||||||
return font->ptem;
|
return font->ptem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef HB_NO_VAR
|
||||||
/*
|
/*
|
||||||
* Variations
|
* Variations
|
||||||
*/
|
*/
|
||||||
|
@ -1830,7 +1831,6 @@ _hb_font_adopt_var_coords_normalized (hb_font_t *font,
|
||||||
font->num_coords = coords_length;
|
font->num_coords = coords_length;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef HB_NO_VAR
|
|
||||||
/**
|
/**
|
||||||
* hb_font_set_variations:
|
* 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);
|
hb_font_set_var_coords_design (font, coords, coords_length);
|
||||||
free (coords);
|
free (coords);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_font_set_var_coords_normalized:
|
* hb_font_set_var_coords_normalized:
|
||||||
|
@ -1951,7 +1950,7 @@ hb_font_get_var_coords_normalized (hb_font_t *font,
|
||||||
|
|
||||||
return font->coords;
|
return font->coords;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef HB_DISABLE_DEPRECATED
|
#ifndef HB_DISABLE_DEPRECATED
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue