Man page - fcft_capabilities(3)
Packages contas this manual
- fcft_text_run_destroy(3)
- fcft_set_scaling_filter(3)
- fcft_rasterize_text_run_utf32(3)
- fcft_kerning(3)
- fcft_font_options_create(3)
- fcft_rasterize_char_utf32(3)
- fcft_init(3)
- fcft_font_options_destroy(3)
- fcft_precompose(3)
- fcft_from_name(3)
- fcft_log_init(3)
- fcft_clone(3)
- fcft_fini(3)
- fcft_from_name2(3)
- fcft_rasterize_grapheme_utf32(3)
- fcft_destroy(3)
- fcft_set_emoji_presentation(3)
- fcft_capabilities(3)
Package: libfcft-doc
apt-get install libfcft-doc
apt-get install libfcft-doc
Manuals in package:
Documentations in package:
Manual
| fcft_capabilities(3) | fcft | fcft_capabilities(3) |
NAME
fcft_capabilities - available optional library capabilities
SYNOPSIS
#include <fcft/fcft.h>
enum fcft_capabilities fcft_capabilities(void);
DESCRIPTION
fcft_capabilities() returns a bitmask of enabled optional library capabilities:
enum fcft_capabilities {
FCFT_CAPABILITY_GRAPHEME_SHAPING = 0x1, /* Since 2.3.0 */
FCFT_CAPABILITY_TEXT_RUN_SHAPING = 0x2, /* Since 2.4.0 */
FCFT_CAPABILITY_SVG = 0x4, /* Since 3.1.0 */
};
FCFT_CAPABILITY_GRAPHEME_SHAPING
fcft can do grapheme shaping (using HarfBuzz), and fcft_grapheme_rasterize() can be expected to return non-NULL.
FCFT_CAPABILITY_TEXT_RUN_SHAPING
fcft can do text-run shaping (using HarfBuzz), and fcft_text_run_rasterize() can be expected to return non-NULL.
FCFT_CAPABILITY_SVG
fcft can rasterize glyphs from OT-SVG fonts.
SEE ALSO
fcft_grapheme_glyph_rasterize(), fcft_text_run_rasterize()
| 2025-03-22 | 3.3.1 |