allow bitmap rendering...

SVN revision: 14508
This commit is contained in:
Carsten Haitzler 2005-04-30 02:30:24 +00:00
parent 89d30febf0
commit ab518488f3
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ evas_common_font_int_cache_glyph_get(RGBA_Font_Int *fi, FT_UInt index)
fg = evas_hash_find(fi->glyphs, key);
if (fg) return fg;
error = FT_Load_Glyph(fi->src->ft.face, index, FT_LOAD_NO_BITMAP);
// error = FT_Load_Glyph(fi->src->ft.face, index, FT_LOAD_NO_BITMAP);
error = FT_Load_Glyph(fi->src->ft.face, index,
FT_LOAD_RENDER);
if (error) return NULL;
fg = malloc(sizeof(struct _RGBA_Font_Glyph));