e_hwc_window_queue: fix wrong setting width and height 72/210372/2 accepted/tizen/unified/20190721.213239 submit/tizen/20190718.064631
authorChangyeon Lee <cyeon.lee@samsung.com>
Thu, 18 Jul 2019 11:49:48 +0000 (20:49 +0900)
committerChangyeon 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

index 64f1442ad738676b763a06eea38fb4a6d441b694..ea0635df1412b129e8872dd83cb1655af772b906 100644 (file)
@@ -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;