tpl_wayland_egl_thread: Removed tbm_surface_queue_h from input parameter. 64/134764/3
authorjoonbum.ko <joonbum.ko@samsung.com>
Thu, 20 Apr 2017 23:48:33 +0000 (08:48 +0900)
committerjoonbum.ko <joonbum.ko@samsung.com>
Wed, 21 Jun 2017 07:04:25 +0000 (16:04 +0900)
Change-Id: Ie1bedbcf6cd0ebc6ce931637d270959407a8fdba
Signed-off-by: joonbum.ko <joonbum.ko@samsung.com>
src/tpl_wayland_egl_thread.c
src/tpl_wayland_egl_thread.h

index 6a9249a..a673373 100644 (file)
@@ -356,8 +356,7 @@ static GSourceFuncs _twe_wl_surface_funcs = {
 
 int
 twe_thread_add_wl_surface(twe_thread* thread,
-                                                 struct wl_surface *surface,
-                                                 tbm_surface_queue_h surface_queue)
+                                                 struct wl_surface *surface)
 {
        twe_thread_context *ctx = thread->ctx;
        twe_wl_surf_source *source = NULL;
@@ -382,7 +381,6 @@ twe_thread_add_wl_surface(twe_thread* thread,
                                                                           source->event_fd,
                                                                           G_IO_IN);
        source->surf = surface;
-       source->tbm_surface_queue = surface_queue;
 
        g_source_set_callback(&source->gsource, NULL, surface, NULL);
        g_source_attach(&source->gsource, g_main_loop_get_context(ctx->twe_loop));
index e37700e..c5ab0c5 100644 (file)
@@ -22,8 +22,7 @@ twe_thread_del_wl_display(twe_thread* thread,
 
 int
 twe_thread_add_wl_surface(twe_thread* thread,
-                                                 struct wl_surface *surface,
-                                                 tbm_surface_queue_h tbm_queue);
+                                                 struct wl_surface *surface);
 
 void
 twe_thread_del_wl_surface(twe_thread* thread,