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:
52e00eb
)
video: Fix wrong bit comparison for flag 'TBM_BO_SCANOUT'.
56/209456/2
author
Seunghun Lee
<shiin.lee@samsung.com>
Tue, 28 May 2019 07:47:26 +0000
(16:47 +0900)
committer
Seunghun Lee
<shiin.lee@samsung.com>
Mon, 8 Jul 2019 07:46:37 +0000
(16:46 +0900)
Change-Id: Id36a403fe4c1f2a8c1aa1bf44a3f33a03c4dbafc
src/bin/video/iface/e_video_hwc.c
patch
|
blob
|
history
diff --git
a/src/bin/video/iface/e_video_hwc.c
b/src/bin/video/iface/e_video_hwc.c
index b33a7db53e239650fd7aa1850043633969ca9b48..3dc307f87f4082f73c194168b9d84f59c071393b 100644
(file)
--- a/
src/bin/video/iface/e_video_hwc.c
+++ b/
src/bin/video/iface/e_video_hwc.c
@@
-144,7
+144,7
@@
_e_video_hwc_video_buffer_scanout_check(E_Comp_Wl_Video_Buf *vbuf)
EINA_SAFETY_ON_NULL_RETURN_VAL(bo, EINA_FALSE);
flag = tbm_bo_get_flags(bo);
- if (flag
==
TBM_BO_SCANOUT)
+ if (flag
&
TBM_BO_SCANOUT)
return EINA_TRUE;
return EINA_FALSE;