diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-06-17 16:26:30 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-06-25 14:36:09 +0900 |
commit | 64fd278c62e3286c453885216d2d0c86a01ce9fc (patch) | |
tree | d4463d71e84454bb354b4da152a60d51b4f506c6 /doc | |
parent | a18107309dc5233e76b77016b6eb3ef09ddf25ec (diff) | |
download | efl-64fd278c62e3286c453885216d2d0c86a01ce9fc.tar.gz |
Evas filters: EO-ify the filters API
This creates the new interface
Efl.Gfx.Filter
And the implementation is a mixin (evas_filter_mixin.c):
Evas.Filter
All the filter rendering code has now been moved to this
new file. TODO: Merge image filtering.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/previews/preview_text_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/previews/preview_text_filter.c b/doc/previews/preview_text_filter.c index 864342b080..24c51cdaca 100644 --- a/doc/previews/preview_text_filter.c +++ b/doc/previews/preview_text_filter.c @@ -111,7 +111,7 @@ main(int argc, char **argv) evas_object_color_set(o, 255, 255, 255, 255); evas_object_show(o); - eo_do(o, evas_obj_text_filter_program_set(filter)); + eo_do(o, efl_gfx_filter_program_set(filter)); ecore_evas_manual_render(wpd.ee); evas_object_geometry_get(o, NULL, NULL, &w, &h); |