From 9a21becec1785bd0a0edb03235e187565df24c9a Mon Sep 17 00:00:00 2001 From: tasn 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. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@56796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/engines/common/evas_pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/engines/common/evas_pipe.c b/src/lib/engines/common/evas_pipe.c index a2322f4..68db398 100644 --- a/src/lib/engines/common/evas_pipe.c +++ b/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]++; -- 2.7.4