[docs] Remove comments the duplicate docs

This commit is contained in:
Khaled Hosny 2020-12-24 21:56:31 +02:00
parent ff96f73f8f
commit e8c21e003d
1 changed files with 7 additions and 7 deletions

View File

@ -106,9 +106,9 @@ hb_font_funcs_is_immutable (hb_font_funcs_t *ffuncs);
* negative, in coordinate systems that grow up.
**/
typedef struct hb_font_extents_t {
hb_position_t ascender; /* typographic ascender. */
hb_position_t descender; /* typographic descender. */
hb_position_t line_gap; /* suggested line spacing gap. */
hb_position_t ascender;
hb_position_t descender;
hb_position_t line_gap;
/*< private >*/
hb_position_t reserved9;
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.
**/
typedef struct hb_glyph_extents_t {
hb_position_t x_bearing; /* left side of glyph from origin. */
hb_position_t y_bearing; /* top side of glyph from origin. */
hb_position_t width; /* distance from left to right side. */
hb_position_t height; /* distance from top to bottom side. */
hb_position_t x_bearing;
hb_position_t y_bearing;
hb_position_t width;
hb_position_t height;
} hb_glyph_extents_t;
/* func types */