From 45cc34b1e7d670974c09314383f964408fcec274 Mon Sep 17 00:00:00 2001 From: Sunghyun Kim Date: Mon, 26 Apr 2021 15:39:18 +0900 Subject: [PATCH] Revert "[Tizen] Sync for libds" This reverts commit e530f15d28fe74107f1840fbbe15c0fd115fe31e. Change-Id: Iaf31f7a4c66bc69d5f6bd9b050644e1f9892de0d --- dali/devel-api/adaptor-framework/offscreen-application.cpp | 4 ++-- dali/devel-api/adaptor-framework/offscreen-application.h | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dali/devel-api/adaptor-framework/offscreen-application.cpp b/dali/devel-api/adaptor-framework/offscreen-application.cpp index 252aa80..30d2c96 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 impl = Internal::OffscreenApplication::New(0, 0, surface, isTranslucent, renderMode); + IntrusivePtr 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 a037b76..d03d99b 100644 --- a/dali/devel-api/adaptor-framework/offscreen-application.h +++ b/dali/devel-api/adaptor-framework/offscreen-application.h @@ -73,10 +73,9 @@ public: * @brief This is the constructor of OffscreenApplication * * @param[in] surface The native surface handle to create the OffscreenWindow - * @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