SDL_ttf.h

Función TTF_SetFontHinting

Sintaxis

void TTF_SetFontHinting(TTF_Font *font, int hinting);

Descripción

Establece la configuración del interior actual de una fuente.

Parámetros

font
La fuente a la que asignar el nuevo valor de interior.
hinting
El nuevo valor de interior.

Valor de retorno

Devuelve 0 si tiene éxito o un código de error negativo si falla. Ver SDL_GetError.

Observaciones

Al establecerlo, se borran de la caché los glifos ya generados, si los hay.

El ajuste de interior es un valor único:

  • TTF_HINTING_NORMAL
  • TTF_HINTING_LIGHT
  • TTF_HINTING_MONO
  • TTF_HINTING_NONE
  • TTF_HINTING_LIGHT_SUBPIXEL (disponible en SDL_ttf 2.0.18 y posteriores)