[docs] Complete hb-metrics docs a bit
This commit is contained in:
parent
5a55b31a38
commit
3a012cc469
|
@ -119,11 +119,11 @@ _get_gasp (hb_face_t *face, float *result, hb_ot_metrics_tag_t metrics_tag)
|
|||
|
||||
/**
|
||||
* hb_ot_metrics_get_position:
|
||||
* @font: a #hb_font_t object.
|
||||
* @font: an #hb_font_t object.
|
||||
* @metrics_tag: tag of metrics value you like to fetch.
|
||||
* @position: (out) (optional): result of metrics value from the font.
|
||||
*
|
||||
* It fetches metrics value corresponding to a given tag from a font.
|
||||
* Fetches metrics value corresponding to @metrics_tag from @font.
|
||||
*
|
||||
* Returns: Whether found the requested metrics in the font.
|
||||
* Since: 2.6.0
|
||||
|
@ -193,10 +193,13 @@ hb_ot_metrics_get_position (hb_font_t *font,
|
|||
#ifndef HB_NO_VAR
|
||||
/**
|
||||
* hb_ot_metrics_get_variation:
|
||||
* @font:
|
||||
* @metrics_tag:
|
||||
* @font: an #hb_font_t object.
|
||||
* @metrics_tag: tag of metrics value you like to fetch.
|
||||
*
|
||||
* Returns:
|
||||
* Fetches metrics value corresponding to @metrics_tag from @font with the
|
||||
* current font variation settings applied.
|
||||
*
|
||||
* Returns: The requested metric value.
|
||||
*
|
||||
* Since: 2.6.0
|
||||
**/
|
||||
|
@ -208,10 +211,13 @@ hb_ot_metrics_get_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
|
|||
|
||||
/**
|
||||
* hb_ot_metrics_get_x_variation:
|
||||
* @font:
|
||||
* @metrics_tag:
|
||||
* @font: an #hb_font_t object.
|
||||
* @metrics_tag: tag of metrics value you like to fetch.
|
||||
*
|
||||
* Returns:
|
||||
* Fetches horizontal metrics value corresponding to @metrics_tag from @font
|
||||
* with the current font variation settings applied.
|
||||
*
|
||||
* Returns: The requested metric value.
|
||||
*
|
||||
* Since: 2.6.0
|
||||
**/
|
||||
|
@ -223,10 +229,13 @@ hb_ot_metrics_get_x_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
|
|||
|
||||
/**
|
||||
* hb_ot_metrics_get_y_variation:
|
||||
* @font:
|
||||
* @metrics_tag:
|
||||
* @font: an #hb_font_t object.
|
||||
* @metrics_tag: tag of metrics value you like to fetch.
|
||||
*
|
||||
* Returns:
|
||||
* Fetches vertical metrics value corresponding to @metrics_tag from @font with
|
||||
* the current font variation settings applied.
|
||||
*
|
||||
* Returns: The requested metric value.
|
||||
*
|
||||
* Since: 2.6.0
|
||||
**/
|
||||
|
|
|
@ -66,7 +66,8 @@ HB_BEGIN_DECLS
|
|||
* @HB_OT_METRICS_TAG_UNDERLINE_SIZE: underline size.
|
||||
* @HB_OT_METRICS_TAG_UNDERLINE_OFFSET: underline offset.
|
||||
*
|
||||
* From https://docs.microsoft.com/en-us/typography/opentype/spec/mvar#value-tags
|
||||
* Metric tags corresponding to [MVAR Value
|
||||
* Tags](https://docs.microsoft.com/en-us/typography/opentype/spec/mvar#value-tags)
|
||||
*
|
||||
* Since: 2.6.0
|
||||
**/
|
||||
|
|
Loading…
Reference in New Issue