mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[aat] Remove hb_aat_layout_get_tracking() again
https://github.com/harfbuzz/harfbuzz/pull/5223
This commit is contained in:
parent
208ffb3f1f
commit
b4fd777c23
3 changed files with 0 additions and 29 deletions
|
@ -10,7 +10,6 @@ hb_aat_layout_get_feature_types
|
|||
hb_aat_layout_has_positioning
|
||||
hb_aat_layout_has_substitution
|
||||
hb_aat_layout_has_tracking
|
||||
hb_aat_layout_get_tracking
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
|
|
@ -394,30 +394,6 @@ hb_aat_layout_has_tracking (hb_face_t *face)
|
|||
return face->table.trak->has_data ();
|
||||
}
|
||||
|
||||
/**
|
||||
* hb_aat_layout_get_tracking:
|
||||
* @font: #hb_font_t to work upon
|
||||
* @direction: The direction of the text
|
||||
* @tracking: The tracking value to apply
|
||||
*
|
||||
* Fetches the tracking value for the specified font and direction.
|
||||
* The tracking value is a floating-point number that specifies the
|
||||
* amount of tracking value to add between characters in the text.
|
||||
* Most clients want to use 0. here.
|
||||
*
|
||||
* Return value: The tracking value for the specified font and direction
|
||||
* XSince: REPLACEME
|
||||
*/
|
||||
hb_position_t
|
||||
hb_aat_layout_get_tracking (hb_font_t *font,
|
||||
hb_direction_t direction,
|
||||
float tracking)
|
||||
{
|
||||
const AAT::trak& trak = *font->face->table.trak;
|
||||
|
||||
return trak.get_tracking (font, direction, tracking);
|
||||
}
|
||||
|
||||
void
|
||||
hb_aat_layout_track (const hb_ot_shape_plan_t *plan,
|
||||
hb_font_t *font,
|
||||
|
|
|
@ -789,10 +789,6 @@ hb_aat_layout_has_positioning (hb_face_t *face);
|
|||
HB_EXTERN hb_bool_t
|
||||
hb_aat_layout_has_tracking (hb_face_t *face);
|
||||
|
||||
HB_EXTERN hb_position_t
|
||||
hb_aat_layout_get_tracking (hb_font_t *font,
|
||||
hb_direction_t direction,
|
||||
float tracking);
|
||||
|
||||
HB_END_DECLS
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue