update 16 bits engine for rtl support

SVN revision: 40728
This commit is contained in:
Vincent Torri 2009-05-18 17:31:52 +00:00
parent c38a387a05
commit cad3471bfb
1 changed files with 9 additions and 1 deletions

View File

@ -772,6 +772,12 @@ eng_font_char_at_coords_get(void *data __UNUSED__, void *font, const char *text,
return evas_common_font_query_text_at_pos(font, text, x, y, cx, cy, cw, ch);
}
static int
eng_font_last_up_to_pos(void *data __UNUSED__, void *font, const char *text, int x, int y)
{
return evas_common_font_query_last_up_to_pos(font, text, x, y);
}
static void
eng_font_draw(void *data __UNUSED__, void *context, void *surface, void *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const char *text)
{
@ -972,7 +978,9 @@ static Evas_Func func =
eng_font_hinting_set,
eng_font_hinting_can_hint,
eng_image_scale_hint_set,
eng_image_scale_hint_get
eng_image_scale_hint_get,
/* more font draw functions */
eng_font_last_up_to_pos
/* FUTURE software generic calls go here */
};