[docs] Update hb-common documentation
This commit is contained in:
parent
e8c21e003d
commit
8586f15957
|
@ -524,8 +524,9 @@ hb_script_to_iso15924_tag (hb_script_t script)
|
|||
* Fetches the #hb_direction_t of a script when it is
|
||||
* set horizontally. All right-to-left scripts will return
|
||||
* #HB_DIRECTION_RTL. All left-to-right scripts will return
|
||||
* #HB_DIRECTION_LTR. Scripts that cannot be written
|
||||
* horizontally will return #HB_DIRECTION_INVALID.
|
||||
* #HB_DIRECTION_LTR. Scripts that can be written either
|
||||
* horizontally or vertically will return #HB_DIRECTION_INVALID.
|
||||
* Unknown scripts will return #HB_DIRECTION_LTR.
|
||||
*
|
||||
* Return value: The horizontal #hb_direction_t of @script
|
||||
*
|
||||
|
|
|
@ -136,8 +136,8 @@ typedef union _hb_var_int_t {
|
|||
/**
|
||||
* hb_tag_t:
|
||||
*
|
||||
* Data type for tag identifiers. Tags are arrays of four
|
||||
* bytes, each of which holds a character.
|
||||
* Data type for tag identifiers. Tags are four
|
||||
* byte integers, each byte representing a character.
|
||||
*
|
||||
* Tags are used to identify tables, design-variation axes,
|
||||
* scripts, languages, font features, and baselines with
|
||||
|
@ -236,8 +236,8 @@ hb_direction_to_string (hb_direction_t direction);
|
|||
* HB_DIRECTION_IS_FORWARD:
|
||||
* @dir: #hb_direction_t to test
|
||||
*
|
||||
* Tests whether a text direction is forward. Requires
|
||||
* that the direction be valid.
|
||||
* Tests whether a text direction moves forward (from left to right, or from
|
||||
* top to bottom). Requires that the direction be valid.
|
||||
*
|
||||
**/
|
||||
#define HB_DIRECTION_IS_FORWARD(dir) ((((unsigned int) (dir)) & ~2U) == 4)
|
||||
|
@ -245,8 +245,8 @@ hb_direction_to_string (hb_direction_t direction);
|
|||
* HB_DIRECTION_IS_BACKWARD:
|
||||
* @dir: #hb_direction_t to test
|
||||
*
|
||||
* Tests whether a text direction is backward. Requires
|
||||
* that the direction be valid.
|
||||
* Tests whether a text direction moves backward (from right to left, or from
|
||||
* bottom to top). Requires that the direction be valid.
|
||||
*
|
||||
**/
|
||||
#define HB_DIRECTION_IS_BACKWARD(dir) ((((unsigned int) (dir)) & ~2U) == 5)
|
||||
|
@ -433,11 +433,9 @@ hb_language_get_default (void);
|
|||
* @HB_SCRIPT_NYIAKENG_PUACHUE_HMONG
|
||||
* @HB_SCRIPT_WANCHO
|
||||
* @HB_SCRIPT_INVALID: #HB_TAG_NONE
|
||||
* @_HB_SCRIPT_MAX_VALUE: Dummy value
|
||||
* @_HB_SCRIPT_MAX_VALUE_SIGNED: Dummy value
|
||||
*
|
||||
* Data type for scripts. Each #hb_script_t's value is an #hb_tag_t corresponding
|
||||
* to the four-letter values defined at https://unicode.org/iso15924/ .
|
||||
* to the four-letter values defined by [ISO 15924](https://unicode.org/iso15924/).
|
||||
*
|
||||
* See also the Script (sc) property of the Unicode Character Database.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue