From: Hermet Park Date: Thu, 9 May 2019 04:08:09 +0000 (+0900) Subject: ecore wayland: enable engine alpha channel in default. X-Git-Tag: submit/tizen/20190509.054729^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F205747%2F2;p=platform%2Fupstream%2Fefl.git ecore wayland: enable engine alpha channel in default. This might bring less performwance at full region rendering, but there are some compatibility issues, Non-background ui apps, overlay video apps has been already... Change-Id: Iebf5cdbb5cb7416d942f6e3a9de65f0fc9a68308 --- diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c index 4f095cd..dbbfb2b 100755 --- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c +++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c @@ -3508,7 +3508,12 @@ _ecore_evas_wl_common_new_internal(const char *disp_name, Ecore_Window parent, i } } - einfo->info.destination_alpha = ee_needs_alpha(ee); + /* TIZEN_ONLY(20190509): + This might bring less performance at full region rendering, + but there are some compatibility issues, + Non-background ui apps, overlay video apps has been already... */ + einfo->info.destination_alpha = EINA_TRUE; + //einfo->info.destination_alpha = ee_needs_alpha(ee); einfo->info.rotation = ee->rotation; einfo->info.depth = 32; einfo->info.wl2_win = wdata->win;