From: SooChan Lim Date: Wed, 6 Sep 2017 04:39:45 +0000 (+0900) Subject: e_plane: rename the e_plane_available_tbm_formats_get X-Git-Tag: submit/tizen_4.0/20170911.120310~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F147905%2F3;p=platform%2Fupstream%2Fenlightenment.git e_plane: rename the e_plane_available_tbm_formats_get from e_plane_available_tbm_formats_get() to e_plane_available_formats_get() Change-Id: I67bc90715238fddec512370e36cece239a218bf4 --- diff --git a/src/bin/e_output.c b/src/bin/e_output.c index 8a04ecdc7e..92dc79be06 100644 --- a/src/bin/e_output.c +++ b/src/bin/e_output.c @@ -2004,7 +2004,7 @@ e_output_default_fb_target_get(E_Output *output) if (e_plane_type_get(ep) != E_PLANE_TYPE_GRAPHIC) continue; - formats = e_plane_available_tbm_formats_get(ep); + formats = e_plane_available_formats_get(ep); if (!formats) continue; EINA_LIST_FOREACH(formats, formats_l, format) diff --git a/src/bin/e_plane.c b/src/bin/e_plane.c index a7b07ea73b..20c23f6e9c 100755 --- a/src/bin/e_plane.c +++ b/src/bin/e_plane.c @@ -2276,7 +2276,7 @@ e_plane_is_fb_target(E_Plane *plane) } EINTERN Eina_List * -e_plane_available_tbm_formats_get(E_Plane *plane) +e_plane_available_formats_get(E_Plane *plane) { EINA_SAFETY_ON_NULL_RETURN_VAL(plane, NULL); diff --git a/src/bin/e_plane.h b/src/bin/e_plane.h index 496c133f5f..d5bca9000f 100755 --- a/src/bin/e_plane.h +++ b/src/bin/e_plane.h @@ -172,7 +172,7 @@ EINTERN void e_plane_unset_try_set(E_Plane *plane, Eina_Bool set EINTERN Eina_Bool e_plane_unset_commit_check(E_Plane *plane, Eina_Bool fb_commit); EINTERN Eina_Bool e_plane_is_fetch_retry(E_Plane *plane); EINTERN Eina_Bool e_plane_fb_target_set(E_Plane *plane, Eina_Bool set); -EINTERN Eina_List *e_plane_available_tbm_formats_get(E_Plane *plane); +EINTERN Eina_List *e_plane_available_formats_get(E_Plane *plane); EINTERN Eina_Bool e_plane_pp_commit(E_Plane *plane); EINTERN Eina_Bool e_plane_zoom_set(E_Plane *plane, Eina_Rectangle *rect); EINTERN void e_plane_zoom_unset(E_Plane *plane);