diff options
author | Paulo Alcantara <pcacjr@profusion.mobi> | 2013-01-04 19:37:22 +0000 |
---|---|---|
committer | Rafael Antognolli <antognolli@gmail.com> | 2013-01-04 19:37:22 +0000 |
commit | a33afe35f992868589e8084d22fb20d7d4f2b49f (patch) | |
tree | 82c23f8c41687deee40bc47f79472f904dff25ac | |
parent | 2b672efbdd8e2f13b1ccdc1fd398cb9cd059b3ed (diff) |
efl/wayland_egl: Fix invalid argument being passed
evas_common_font_draw() should be called with glyphs array for now,
instead of intl_props.
This patch should fix ticket #2149.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 82229
-rw-r--r-- | src/modules/evas/engines/wayland_egl/evas_engine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/evas/engines/wayland_egl/evas_engine.c b/src/modules/evas/engines/wayland_egl/evas_engine.c index cfcaaf1007..5b7887f958 100644 --- a/src/modules/evas/engines/wayland_egl/evas_engine.c +++ b/src/modules/evas/engines/wayland_egl/evas_engine.c | |||
@@ -2069,7 +2069,7 @@ eng_font_draw(void *data, void *context, void *surface, Evas_Font_Set *font EINA | |||
2069 | evas_gl_font_texture_free, | 2069 | evas_gl_font_texture_free, |
2070 | evas_gl_font_texture_draw); | 2070 | evas_gl_font_texture_draw); |
2071 | evas_common_font_draw_prepare(intl_props); | 2071 | evas_common_font_draw_prepare(intl_props); |
2072 | evas_common_font_draw(im, context, x, y, intl_props); | 2072 | evas_common_font_draw(im, context, x, y, intl_props->glyphs); |
2073 | evas_common_draw_context_font_ext_set(context, NULL, NULL, NULL, NULL); | 2073 | evas_common_draw_context_font_ext_set(context, NULL, NULL, NULL, NULL); |
2074 | } | 2074 | } |
2075 | } | 2075 | } |