Cherry-pick of https://review.tizen.org/gerrit/c/platform/core/uifw/dali-extension/+/306433
Changed the ecore evas rendering engine in NUI Webkit.
Because webkit only works in GPU thread as worker thread in Web
and ecore evas does not work for rendering.
If NUI Webview works with ecore evas gl backend,
it has the some race condition issue when egl is initailized and terminated.
To fix that, ecore evas engine should be changed with sw backend engine.
Change-Id: I8d899b42e6e1b22ee8bc578ea71378887ae46a5a
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
elm_init(0, 0);
ewk_init();
- mWindow = ecore_evas_new("wayland_egl", 0, 0, 1, 1, 0);
+ mWindow = ecore_evas_new("wayland_shm", 0, 0, 1, 1, 0);
Dali::LifecycleController::Get().TerminateSignal().Connect(mSlotDelegate, &WebEngineManager::OnTerminated);