From 7a90712518237e8d3424f4ec81ed281754778bbe Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 8 Feb 2011 08:12:55 +0000 Subject: [PATCH] Evas font-engine: Fixed the issue of text not showing when using pipe-rendering. For some reason I put the parameters as "src, dst" instead of "dst, src" and I also missed the compilation warning about the passing const as non-const. SVN revision: 56796 --- legacy/evas/src/lib/engines/common/evas_pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/evas/src/lib/engines/common/evas_pipe.c b/legacy/evas/src/lib/engines/common/evas_pipe.c index a2322f4f1c..68db3983b2 100644 --- a/legacy/evas/src/lib/engines/common/evas_pipe.c +++ b/legacy/evas/src/lib/engines/common/evas_pipe.c @@ -1238,8 +1238,8 @@ evas_common_pipe_text_draw(RGBA_Image *dst, RGBA_Draw_Context *dc, op->op.text.x = x; op->op.text.y = y; op->op.text.text = eina_unicode_strdup(text); - evas_common_text_props_content_copy_and_ref(intl_props, - &(op->op.text.intl_props)); + evas_common_text_props_content_copy_and_ref(&(op->op.text.intl_props), + intl_props); #ifdef EVAS_FRAME_QUEUING LKL(fn->ref_fq_add); fn->ref_fq[0]++;