getKerning method
Query whether or not kerning is enabled for a font.
\param font the font to query. \returns true if kerning is enabled, false otherwise.
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL_ttf 3.0.0.
\sa TTF_SetFontKerning
extern SDL_DECLSPEC bool SDLCALL TTF_GetFontKerning(const TTF_Font *font)
Implementation
bool getKerning() {
return ttfGetFontKerning(this);
}