From: joonbum.ko Date: Mon, 24 Apr 2017 04:23:48 +0000 (+0900) Subject: tpl_wayland_egl_thread: Changed the internal function name. X-Git-Tag: accepted/tizen/unified/20170711.180707~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F134953%2F4;p=platform%2Fcore%2Fuifw%2Flibtpl-egl.git tpl_wayland_egl_thread: Changed the internal function name. Change-Id: I868f105b8507e4d07e7006fd77fc539678897bb0 Signed-off-by: joonbum.ko --- diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index 3bd07c5..4ca8606 100644 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -278,7 +278,7 @@ static GSourceFuncs _twe_wl_disp_funcs = { }; static struct wayland_tbm_client* -_twe_thread_init_wl_tbm_client(struct wl_display *display, +_twe_display_init_wl_tbm_client(struct wl_display *display, struct wl_event_queue *ev_queue) { struct wl_proxy *wl_tbm = NULL; @@ -304,7 +304,7 @@ _twe_thread_init_wl_tbm_client(struct wl_display *display, } static void -_twe_thread_fini_wl_tbm_client(struct wayland_tbm_client *wl_tbm_client) +_twe_display_fini_wl_tbm_client(struct wayland_tbm_client *wl_tbm_client) { struct wl_proxy *wl_tbm = NULL; @@ -332,7 +332,7 @@ twe_display_add(twe_thread* thread, struct wl_display *display) return NULL; } - wl_tbm_client = _twe_thread_init_wl_tbm_client(display, ev_queue); + wl_tbm_client = _twe_display_init_wl_tbm_client(display, ev_queue); if (!wl_tbm_client) { TPL_ERR("Failed to create wl_tbm_client."); wl_event_queue_destroy(ev_queue); @@ -375,7 +375,7 @@ twe_display_del(twe_display_h twe_display) thread = source->thread; /* TODO : disp_source will be removed from displays list in thread */ - _twe_thread_fini_wl_tbm_client(source->wl_tbm_client); + _twe_display_fini_wl_tbm_client(source->wl_tbm_client); source->wl_tbm_client = NULL; g_source_remove_poll(&source->gsource, &source->gfd);