From baf63ffd8ad16f2474e4ffa3ba6f6e43f9f8c88e Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Thu, 18 Jul 2019 20:49:48 +0900 Subject: [PATCH] e_hwc_window_queue: fix wrong setting width and height Change-Id: I955f99be3b9968503af565ee410c3c4c2b18f12e --- src/bin/e_hwc_window_queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_hwc_window_queue.c b/src/bin/e_hwc_window_queue.c index 64f1442ad7..ea0635df14 100644 --- 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; -- 2.34.1