Evas font-engine: Fixes last commit to not seg when not using OT.

SVN revision: 58936
This commit is contained in:
Tom Hacohen 2011-04-26 14:20:45 +00:00
parent 476ac636d5
commit a3e8da3507
2 changed files with 11 additions and 0 deletions

View File

@ -521,6 +521,9 @@ evas_common_font_draw_internal(RGBA_Image *dst, RGBA_Draw_Context *dc, RGBA_Font
#endif
im = dst->image.data;
#ifdef OT_SUPPORT
/* FIXME-tom: Should be applied to non-ot as well once we are capable of
* doing it */
fi = text_props->font_instance;
evas_common_font_int_reload(fi);
@ -531,6 +534,7 @@ evas_common_font_draw_internal(RGBA_Image *dst, RGBA_Draw_Context *dc, RGBA_Font
FTUNLOCK();
fi->src->current_size = fi->size;
}
#endif
EVAS_FONT_WALK_TEXT_START()
{
@ -836,6 +840,9 @@ evas_font_word_prerender(RGBA_Draw_Context *dc, const Eina_Unicode *in_text, con
gl = dc->font_ext.func.gl_new ? 1: 0;
above = 0; below = 0; baseline = 0; height = 0; descent = 0;
#ifdef OT_SUPPORT
/* FIXME-tom: Should be applied to non-ot as well once we are capable of
* doing it */
fi = text_props->font_instance;
evas_common_font_int_reload(fi);
@ -846,6 +853,7 @@ evas_font_word_prerender(RGBA_Draw_Context *dc, const Eina_Unicode *in_text, con
FTUNLOCK();
fi->src->current_size = fi->size;
}
#endif
/* First pass: Work out how big and populate */
/* It's a bit hackish to use index and fg here as they are internal,

View File

@ -290,6 +290,9 @@ evas_common_text_props_content_create(void *_fn, const Eina_Unicode *text,
gl_itr++;
}
#else
/* FIXME: Move outside when we can (read comment above). */
text_props->font_instance = NULL;
/* We are walking the string in visual ordering */
Evas_Font_Glyph_Info *gl_itr;
Eina_Bool use_kerning;