Revert "[Tizen] Sync for libds"
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 19 Nov 2020 03:19:22 +0000 (12:19 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 19 Nov 2020 03:19:25 +0000 (12:19 +0900)
This reverts commit 004751ba25620c9978f6d39cd2a3f0d2ac95a45c.

Change-Id: Iac3351159c4cafe88e9e8e63a448a39ba6603d72

dali/devel-api/adaptor-framework/offscreen-application.cpp
dali/devel-api/adaptor-framework/offscreen-application.h

index 252aa80..30d2c96 100644 (file)
@@ -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());
 
index b549cb6..3daa735 100644 (file)
@@ -70,10 +70,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