revert the patch for RTL text rendering in software_16 engine

SVN revision: 40789
This commit is contained in:
Vincent Torri 2009-05-23 09:23:01 +00:00
parent 974bbfd19f
commit 6842103267
2 changed files with 1 additions and 10 deletions

View File

@ -684,7 +684,6 @@ struct _Evas_Func
void (*image_scale_hint_set) (void *data, void *image, int hint);
int (*image_scale_hint_get) (void *data, void *image);
int (*font_last_up_to_pos) (void *data, void *font, const char *text, int x, int y);
};
struct _Evas_Image_Load_Func

View File

@ -772,12 +772,6 @@ 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)
{
@ -978,9 +972,7 @@ static Evas_Func func =
eng_font_hinting_set,
eng_font_hinting_can_hint,
eng_image_scale_hint_set,
eng_image_scale_hint_get,
/* more font draw functions */
eng_font_last_up_to_pos
eng_image_scale_hint_get
/* FUTURE software generic calls go here */
};