video: need update viewport in case of topmost showing 92/119892/2 accepted/tizen/3.0/common/20170321.122858 accepted/tizen/3.0/ivi/20170321.035529 accepted/tizen/3.0/mobile/20170321.035401 accepted/tizen/3.0/tv/20170321.035445 accepted/tizen/3.0/wearable/20170321.035507 accepted/tizen/common/20170320.174114 accepted/tizen/ivi/20170320.222252 accepted/tizen/mobile/20170320.222157 accepted/tizen/tv/20170320.222225 accepted/tizen/unified/20170320.222313 accepted/tizen/wearable/20170320.222237 submit/tizen/20170320.113339 submit/tizen_3.0/20170320.113345
authorkyoungsik park <kstyle.park@samsung.com>
Mon, 20 Mar 2017 11:17:30 +0000 (20:17 +0900)
committerkyoungsik park <kstyle.park@samsung.com>
Mon, 20 Mar 2017 11:20:20 +0000 (20:20 +0900)
Change-Id: Ib3ec24e15e74a44cac5d351f900f09391c288a8b
Signed-off-by: kyoungsik park <kstyle.park@samsung.com>
src/e_devicemgr_video.c

index fa3d6d4d279a7ba59031c83b758af94ed5faa168..1a8f31abd517d0b0149efd6bde4bd0ced6a3a8b6 100755 (executable)
@@ -2004,7 +2004,7 @@ _e_video_cb_ec_client_show(void *data, int type, void *event)
    video = find_video_with_surface(video_ec->comp_data->surface);
    if (!video) return ECORE_CALLBACK_PASS_ON;
 
-   VIN("client show: find video child(0x%08"PRIxPTR")", (Ecore_Window)e_client_util_win_get(video_ec));
+   VIN("client(0x%08"PRIxPTR") show: find video child(0x%08"PRIxPTR")", (Ecore_Window)e_client_util_win_get(ec), (Ecore_Window)e_client_util_win_get(video_ec));
    if(video->old_comp_buffer)
      {
         VIN("video already rendering..");
@@ -2014,6 +2014,7 @@ _e_video_cb_ec_client_show(void *data, int type, void *event)
    if(ec == find_topmost_parent_get(video->ec))
      {
        VIN("video need rendering..");
+       e_devicemgr_viewport_apply(ec);
        _e_video_render(video, __FUNCTION__);
      }