Exemplo n.º 1
0
weak void
register_fpe_functions (void)
{
    OVERRIDE_SYMBOL(register_fpe_functions);
    BuiltinRegisterFpeFunctions();
    FontFileRegisterFpeFunctions();
#ifdef XFONT_FC
    fs_register_fpe_functions();
#endif
}
weak void
register_fpe_functions (void)
{
#ifdef XFONT_BUILTINS
    BuiltinRegisterFpeFunctions();
#endif
#ifdef XFONT_FONTFILE
    FontFileRegisterFpeFunctions();
#endif
#ifdef XFONT_FC
    fs_register_fpe_functions();
#endif
}
Exemplo n.º 3
0
void
InitFonts(void)
{
    if (fontPatternCache)
	FreeFontPatternCache(fontPatternCache);
    fontPatternCache = MakeFontPatternCache();

    ResetFontPrivateIndex();

#ifdef FONT_PCF
    FontFileRegisterFpeFunctions();

#endif

#ifdef FONT_FS
    fs_register_fpe_functions();
#endif
}