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:
9708033
)
e_hwc_window_queue: fix wrong setting width and height
72/210372/2
accepted/tizen/unified/20190721.213239
submit/tizen/20190718.064631
author
Changyeon Lee
<cyeon.lee@samsung.com>
Thu, 18 Jul 2019 11:49:48 +0000
(20:49 +0900)
committer
Changyeon Lee
<cyeon.lee@samsung.com>
Thu, 18 Jul 2019 11:59:07 +0000
(20:59 +0900)
Change-Id: I955f99be3b9968503af565ee410c3c4c2b18f12e
src/bin/e_hwc_window_queue.c
patch
|
blob
|
history
diff --git
a/src/bin/e_hwc_window_queue.c
b/src/bin/e_hwc_window_queue.c
index 64f1442ad738676b763a06eea38fb4a6d441b694..ea0635df1412b129e8872dd83cb1655af772b906 100644
(file)
--- a/
src/bin/e_hwc_window_queue.c
+++ b/
src/bin/e_hwc_window_queue.c
@@
-916,8
+916,8
@@
_e_hwc_window_queue_create(tbm_surface_queue_h tqueue)
queue);
EINA_SAFETY_ON_FALSE_GOTO(tsq_err == TBM_SURFACE_QUEUE_ERROR_NONE, fail);
- queue->width = tbm_surface_queue_get_
height
(tqueue);
- queue->height = tbm_surface_queue_get_
width
(tqueue);
+ queue->width = tbm_surface_queue_get_
width
(tqueue);
+ queue->height = tbm_surface_queue_get_
height
(tqueue);
queue->format = tbm_surface_queue_get_format(tqueue);
queue->tqueue = tqueue;