Module: SDL2::TTF::Hinting

Defined in:
ttf.c,
ttf.c

Overview

Constants represents font hinting for FreeType.

Constant Summary collapse

NORMAL =

Returns integer representing normal hinting, default.

Returns:

  • (Integer)

    integer representing normal hinting, default

INT2NUM((TTF_HINTING_NORMAL))
LIGHT =

Returns integer representing lighter hinting for non-monochrome modes.

Returns:

  • (Integer)

    integer representing lighter hinting for non-monochrome modes

INT2NUM((TTF_HINTING_LIGHT))
MONO =

Returns integer representing strong hinting, only used for monochrome output.

Returns:

  • (Integer)

    integer representing strong hinting, only used for monochrome output

INT2NUM((TTF_HINTING_MONO))
NONE =

Returns integer representing no hinting.

Returns:

  • (Integer)

    integer representing no hinting

INT2NUM((TTF_HINTING_NONE))