search for: ft_is_sfnt

Displaying 1 result from an estimated 1 matches for "ft_is_sfnt".

2006 Mar 15
0
How to setup bitmap fonts?
...an application, that needs bitmap fonts. It is strange, than on one of my computers it runs well on wine (0.9.9), but on the other it complains about the fonts(*). If I set WINEDEBUG=warn+font, it says it is ignoring this font. I found the folowing section in wine-0.9.9/dlls/gdi/freetype.c: if(!FT_IS_SFNT(ft_face) && (FT_IS_SCALABLE(ft_face) || !(flags & ADDFONT_FORCE_BITMAP))) { /* for now we'll accept TT/OT or bitmap fonts*/ WARN("Ignoring font %s\n", debugstr_a(file)); pFT_Done_Face(ft_face); return FALSE; } If I delete/comment it, my program works j...