stbtt_GetFontVMetrics

Ascent is the coordinate above the baseline the font extends; descent is the coordinate below the baseline the font extends (i.e. it is typically negative) lineGap is the spacing between one row's descent and the next row's ascent... so you should advance the vertical position by "*ascent - *descent + *lineGap" these are expressed in unscaled coordinates, so you must multiply by the scale factor for a given size

nothrow @nogc
void
stbtt_GetFontVMetrics
(,
int* ascent
,
int* descent
,
int* lineGap
)

Meta