From 5c51f9311780b763a63cb33526c2fec71809ada0 Mon Sep 17 00:00:00 2001 From: Daekwang Ryu Date: Tue, 6 Oct 2020 12:51:22 +0900 Subject: [PATCH] Revert "[Tizen] Sync for libds" This reverts commit cdaf20d7d28fc47b94546c901765c2356f36a582. --- 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 ef444f4..95f1843 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, bool isTranslucent, OffscreenApplication::RenderMode renderMode ) +OffscreenApplication OffscreenApplication::New( Dali::Any surface, OffscreenApplication::RenderMode renderMode ) { - IntrusivePtr< Internal::OffscreenApplication > impl = Internal::OffscreenApplication::New( 0, 0, surface, isTranslucent, renderMode ); + IntrusivePtr< Internal::OffscreenApplication > impl = Internal::OffscreenApplication::New( 0, 0, surface, false, 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 994545c..cac1f64 100644 --- a/dali/devel-api/adaptor-framework/offscreen-application.h +++ b/dali/devel-api/adaptor-framework/offscreen-application.h @@ -78,7 +78,7 @@ public: * @param[in] isTranslucent Whether the OffscreenWindow is translucent or not * @param[in] renderMode The RenderMode of the OffscreenApplication */ - static OffscreenApplication New( Dali::Any surface, bool isTranslucent, RenderMode renderMode = RenderMode::AUTO ); + static OffscreenApplication New( Dali::Any surface, RenderMode renderMode = RenderMode::AUTO ); /** * @brief Constructs an empty handle -- 2.7.4