From 77476ce43f58a1d750abd891e33f0ab2838eea78 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Thu, 9 May 2019 13:08:09 +0900 Subject: [PATCH] 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 --- src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; -- 2.7.4