From: huiyu.eun Date: Thu, 7 Mar 2019 04:08:34 +0000 (+0900) Subject: Call ProcessCoreEvent() from NotifySceneCreated() X-Git-Tag: dali_1.4.10~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F00%2F201000%2F2;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Call ProcessCoreEvent() from NotifySceneCreated() Reduce launching time Change-Id: I0ecaa97da695a56840e69d88753ea33219754c37 Signed-off-by: huiyu.eun --- diff --git a/dali/internal/adaptor/common/adaptor-impl.cpp b/dali/internal/adaptor/common/adaptor-impl.cpp index 7c85786..e8683a5 100755 --- a/dali/internal/adaptor/common/adaptor-impl.cpp +++ b/dali/internal/adaptor/common/adaptor-impl.cpp @@ -954,6 +954,10 @@ void Adaptor::NotifySceneCreated() { GetCore().SceneCreated(); + // Flush the event queue to give the update-render thread chance + // to start processing messages for new camera setup etc as soon as possible + ProcessCoreEvents(); + // Start thread controller after the scene has been created mThreadController->Start();