ttfRemoveFallbackFont function ttf

void ttfRemoveFallbackFont(
  1. Pointer<TtfFont> font,
  2. Pointer<TtfFont> fallback
)

Remove a fallback font.

This updates any TTF_Text objects using this font.

\param font the font to modify. \param fallback the font to remove as a fallback.

\threadsafety This function should be called on the thread that created both fonts.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_AddFallbackFont \sa TTF_ClearFallbackFonts

extern SDL_DECLSPEC void SDLCALL TTF_RemoveFallbackFont(TTF_Font *font, TTF_Font *fallback)

Implementation

void ttfRemoveFallbackFont(Pointer<TtfFont> font, Pointer<TtfFont> fallback) {
  final ttfRemoveFallbackFontLookupFunction = _libTtf
      .lookupFunction<
        Void Function(Pointer<TtfFont> font, Pointer<TtfFont> fallback),
        void Function(Pointer<TtfFont> font, Pointer<TtfFont> fallback)
      >('TTF_RemoveFallbackFont');
  return ttfRemoveFallbackFontLookupFunction(font, fallback);
}