[AT-SPI] Add Selection interface
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / adaptor-framework / native-render-surface.h
index 05df78a..c55be78 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_NATIVE_RENDER_SURFACE_H
 
 /*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 
 // INTERNAL INCLUDES
-#include <dali/public-api/dali-adaptor-common.h>
 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
+#include <dali/public-api/dali-adaptor-common.h>
 
 namespace Dali
 {
-
 class TriggerEventInterface;
 
 /**
@@ -33,7 +32,6 @@ class TriggerEventInterface;
 class DALI_ADAPTOR_API NativeRenderSurface : public Dali::RenderSurfaceInterface
 {
 public:
-
   /**
    * @brief Default constructor
    */
@@ -45,24 +43,11 @@ public:
   virtual ~NativeRenderSurface() = default;
 
 public: // API
-
-  /**
-   * @brief Get the render surface the adaptor is using to render to.
-   * @return reference to current render surface
-   */
-  virtual Any GetDrawable() = 0;
-
   /**
    * @brief Sets the render notification trigger to call when render thread is completed a frame
    * @param renderNotification to use
    */
-  virtual void SetRenderNotification( TriggerEventInterface* renderNotification ) = 0;
-
-  /**
-   * @brief Waits until surface is replaced
-   * After tbm surface is acquired in PostRender, this function is finished.
-   */
-  virtual void WaitUntilSurfaceReplaced() = 0;
+  virtual void SetRenderNotification(TriggerEventInterface* renderNotification) = 0;
 
   /**
    * @brief Get the native renderable handle
@@ -71,25 +56,17 @@ public: // API
   virtual Any GetNativeRenderable() = 0;
 
 private: // from NativeRenderSurface
-
   /**
    * @brief Create a renderable
    */
   virtual void CreateNativeRenderable() = 0;
 
-  /**
-   * @brief Release a drawable
-   */
-  virtual void ReleaseDrawable() = 0;
-
 protected:
-
   // Undefined
   NativeRenderSurface(const NativeRenderSurface&) = delete;
 
   // Undefined
   NativeRenderSurface& operator=(const NativeRenderSurface& rhs) = delete;
-
 };
 
 } // namespace Dali