From 761d011db477df33052c1eab6be4673d08da1ebf Mon Sep 17 00:00:00 2001 From: Daekwang Ryu Date: Tue, 8 Sep 2020 13:45:55 +0900 Subject: [PATCH] [Tizen] Sync for libds This patch will be removed when libds applies this api change. Change-Id: I49b658597e64502c37132ef26f379df4ea72dc36 --- dali/devel-api/adaptor-framework/offscreen-application.cpp | 4 ++-- dali/devel-api/adaptor-framework/offscreen-application.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dali/devel-api/adaptor-framework/offscreen-application.cpp b/dali/devel-api/adaptor-framework/offscreen-application.cpp index 49d98ec..f5a522c 100644 --- a/dali/devel-api/adaptor-framework/offscreen-application.cpp +++ b/dali/devel-api/adaptor-framework/offscreen-application.cpp @@ -33,9 +33,9 @@ OffscreenApplication OffscreenApplication::New( uint16_t width, uint16_t height, return offscreenApplication; } -OffscreenApplication OffscreenApplication::New( Dali::Any surface, OffscreenApplication::RenderMode renderMode ) +OffscreenApplication OffscreenApplication::New( Dali::Any surface, bool isTranslucent, OffscreenApplication::RenderMode renderMode ) { - IntrusivePtr< Internal::OffscreenApplication > impl = Internal::OffscreenApplication::New( 0, 0, surface, false, renderMode ); + IntrusivePtr< Internal::OffscreenApplication > impl = Internal::OffscreenApplication::New( 0, 0, surface, isTranslucent, renderMode ); OffscreenApplication offscreenApplication = OffscreenApplication( impl.Get() ); diff --git a/dali/devel-api/adaptor-framework/offscreen-application.h b/dali/devel-api/adaptor-framework/offscreen-application.h index 399a4b9..13a6708 100644 --- a/dali/devel-api/adaptor-framework/offscreen-application.h +++ b/dali/devel-api/adaptor-framework/offscreen-application.h @@ -77,7 +77,7 @@ public: * @param[in] surface The native surface handle to create the OffscreenWindow * @param[in] renderMode The RenderMode of the OffscreenApplication */ - static OffscreenApplication New( Dali::Any surface, RenderMode renderMode = RenderMode::AUTO ); + static OffscreenApplication New( Dali::Any surface, bool isTranslucent, RenderMode renderMode = RenderMode::AUTO ); /** * @brief Constructs an empty handle -- 2.7.4