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
This commit is contained in:
Tom Hacohen 2011-02-08 08:12:55 +00:00
parent 40b908c869
commit 7a90712518
1 changed files with 2 additions and 2 deletions

View File

@ -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]++;