getLineSkip method

int getLineSkip()

Query the spacing between lines of text for a font.

\param font the font to query. \returns the font's recommended spacing.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_SetFontLineSkip

extern SDL_DECLSPEC int SDLCALL TTF_GetFontLineSkip(const TTF_Font *font)

Implementation

int getLineSkip() {
  return ttfGetFontLineSkip(this);
}