Displaying 1 result from an estimated 1 matches for "addfont_force_bitmap".
2006 Mar 15
0
How to setup bitmap fonts?
...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 just fine. My question is:
a) I found somewhere, that it should be possible to set...