diff options
author | Tom Hacohen <tom@stosb.com> | 2011-05-02 15:33:46 +0000 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2011-05-02 15:33:46 +0000 |
commit | e93f10b8aab5c53f97142466cf8bc6381ff1ff73 (patch) | |
tree | b5265cd9347a1abc42f94d71b525abec2a44dfe6 /legacy/evas/src/modules/engines/gl_sdl/evas_engine.c | |
parent | dad49dd1f26f63c02ed4dbf35b807d52573168a0 (diff) |
Evas font-engine: Remove passing of strings to font_draw.
This is not needed anymore because we have working string objects.
SVN revision: 59133
Diffstat (limited to '')
-rw-r--r-- | legacy/evas/src/modules/engines/gl_sdl/evas_engine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy/evas/src/modules/engines/gl_sdl/evas_engine.c b/legacy/evas/src/modules/engines/gl_sdl/evas_engine.c index fd4f81774a..27a49f3362 100644 --- a/legacy/evas/src/modules/engines/gl_sdl/evas_engine.c +++ b/legacy/evas/src/modules/engines/gl_sdl/evas_engine.c | |||
@@ -817,7 +817,7 @@ eng_image_scale_hint_get(void *data __UNUSED__, void *image) | |||
817 | } | 817 | } |
818 | 818 | ||
819 | static void | 819 | static void |
820 | eng_font_draw(void *data, void *context, void *surface, void *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const Eina_Unicode *text, const Evas_Text_Props *intl_props) | 820 | eng_font_draw(void *data, void *context, void *surface, void *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const Evas_Text_Props *intl_props) |
821 | { | 821 | { |
822 | Render_Engine *re; | 822 | Render_Engine *re; |
823 | 823 | ||
@@ -837,7 +837,7 @@ eng_font_draw(void *data, void *context, void *surface, void *font, int x, int y | |||
837 | evas_gl_font_texture_new, | 837 | evas_gl_font_texture_new, |
838 | evas_gl_font_texture_free, | 838 | evas_gl_font_texture_free, |
839 | evas_gl_font_texture_draw); | 839 | evas_gl_font_texture_draw); |
840 | evas_common_font_draw(im, context, font, x, y, text, intl_props); | 840 | evas_common_font_draw(im, context, font, x, y, intl_props); |
841 | evas_common_draw_context_font_ext_set(context, | 841 | evas_common_draw_context_font_ext_set(context, |
842 | NULL, | 842 | NULL, |
843 | NULL, | 843 | NULL, |