コード例 #1
0
ファイル: miscutil.c プロジェクト: SvenDowideit/clearlinux
weak void
register_fpe_functions (void)
{
    OVERRIDE_SYMBOL(register_fpe_functions);
    BuiltinRegisterFpeFunctions();
    FontFileRegisterFpeFunctions();
#ifdef XFONT_FC
    fs_register_fpe_functions();
#endif
}
コード例 #2
0
weak void
register_fpe_functions (void)
{
#ifdef XFONT_BUILTINS
    BuiltinRegisterFpeFunctions();
#endif
#ifdef XFONT_FONTFILE
    FontFileRegisterFpeFunctions();
#endif
#ifdef XFONT_FC
    fs_register_fpe_functions();
#endif
}
コード例 #3
0
ファイル: initfonts.c プロジェクト: Bluerise/bitrig-xenocara
void
InitFonts(void)
{
    if (fontPatternCache)
	FreeFontPatternCache(fontPatternCache);
    fontPatternCache = MakeFontPatternCache();

    ResetFontPrivateIndex();

#ifdef FONT_PCF
    FontFileRegisterFpeFunctions();

#endif

#ifdef FONT_FS
    fs_register_fpe_functions();
#endif
}