jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2409784df1ffacb2e08309be8921ffc49c6af293

commit 2409784df1ffacb2e08309be8921ffc49c6af293
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Mon Feb 29 15:47:36 2016 +0900

    Evas text: Add legacy filter APIs
    
    Those should now be considered stable, even if their internals
    may change. Also, these APIs are in Tizen so adding these will
    help merging Tizen EFL and upstream.
---
 src/lib/evas/canvas/evas_object_text.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/lib/evas/canvas/evas_object_text.c 
b/src/lib/evas/canvas/evas_object_text.c
index 70f527f..0820b60 100644
--- a/src/lib/evas/canvas/evas_object_text.c
+++ b/src/lib/evas/canvas/evas_object_text.c
@@ -2342,6 +2342,18 @@ _evas_text_efl_gfx_filter_filter_program_set(Eo *obj, 
Evas_Text_Data *pd EINA_UN
    eo_do_super(obj, MY_CLASS, efl_gfx_filter_program_set(code, name));
 }
 
+EAPI void
+evas_object_text_filter_program_set(Evas_Object *obj, const char *code, const 
char *name)
+{
+   eo_do(obj, efl_gfx_filter_program_set(code, name));
+}
+
+EAPI void
+evas_object_text_filter_source_set(Evas_Object *obj, const char *name, 
Evas_Object *source)
+{
+   eo_do(obj, efl_gfx_filter_source_set(name, source));
+}
+
 EOLIAN static void
 _evas_text_evas_object_paragraph_direction_set(Eo *eo_obj, Evas_Text_Data *o, 
Evas_BiDi_Direction dir)
 {

-- 


Reply via email to