projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e68e6cb
)
video: Show/Hide evas_object of video client instead of using cb func.
author
Seunghun
<shiin.lee@samsung.com>
Wed, 27 Feb 2019 07:55:45 +0000
(16:55 +0900)
committer
SooChan Lim
<sc1.lim@samsung.com>
Fri, 12 Apr 2019 10:00:22 +0000
(19:00 +0900)
This patch set enlightenment module free to handle a state of show/hide of
evas_object of video client.
Change-Id: I1769c03bc9ee81885d66a6a299f437dab1d5f088
src/bin/video/iface/e_video_hwc_windows.c
patch
|
blob
|
history
diff --git
a/src/bin/video/iface/e_video_hwc_windows.c
b/src/bin/video/iface/e_video_hwc_windows.c
index 74df9c91c426c455bfe58ce033e4373f2deb28b7..ad760cb14c0fc95fa24bc739db3f4e2dc632b2a6 100644
(file)
--- a/
src/bin/video/iface/e_video_hwc_windows.c
+++ b/
src/bin/video/iface/e_video_hwc_windows.c
@@
-1705,9
+1705,10
@@
_e_video_cb_ec_visibility_change(void *data, int type, void *event)
switch (ec->visibility.obscured)
{
case E_VISIBILITY_FULLY_OBSCURED:
+ evas_object_hide(evhw->ec->frame);
break;
case E_VISIBILITY_UNOBSCURED:
-
_e_video_cb_evas_show(evhw, NULL, NULL, NULL
);
+
evas_object_show(evhw->ec->frame
);
break;
default:
VER("Not implemented");