[docs] Remove comments the duplicate docs
This commit is contained in:
parent
ff96f73f8f
commit
e8c21e003d
|
@ -106,9 +106,9 @@ hb_font_funcs_is_immutable (hb_font_funcs_t *ffuncs);
|
||||||
* negative, in coordinate systems that grow up.
|
* negative, in coordinate systems that grow up.
|
||||||
**/
|
**/
|
||||||
typedef struct hb_font_extents_t {
|
typedef struct hb_font_extents_t {
|
||||||
hb_position_t ascender; /* typographic ascender. */
|
hb_position_t ascender;
|
||||||
hb_position_t descender; /* typographic descender. */
|
hb_position_t descender;
|
||||||
hb_position_t line_gap; /* suggested line spacing gap. */
|
hb_position_t line_gap;
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
hb_position_t reserved9;
|
hb_position_t reserved9;
|
||||||
hb_position_t reserved8;
|
hb_position_t reserved8;
|
||||||
|
@ -133,10 +133,10 @@ typedef struct hb_font_extents_t {
|
||||||
* Note that @height is negative, in coordinate systems that grow up.
|
* Note that @height is negative, in coordinate systems that grow up.
|
||||||
**/
|
**/
|
||||||
typedef struct hb_glyph_extents_t {
|
typedef struct hb_glyph_extents_t {
|
||||||
hb_position_t x_bearing; /* left side of glyph from origin. */
|
hb_position_t x_bearing;
|
||||||
hb_position_t y_bearing; /* top side of glyph from origin. */
|
hb_position_t y_bearing;
|
||||||
hb_position_t width; /* distance from left to right side. */
|
hb_position_t width;
|
||||||
hb_position_t height; /* distance from top to bottom side. */
|
hb_position_t height;
|
||||||
} hb_glyph_extents_t;
|
} hb_glyph_extents_t;
|
||||||
|
|
||||||
/* func types */
|
/* func types */
|
||||||
|
|
Loading…
Reference in New Issue