Revert "[Tizen] Add screen and client rotation itself function"
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / windows / window-base-win.h
index 05b208e..a9ec27d 100755 (executable)
@@ -327,11 +327,6 @@ public:
   virtual void SetWindowRotationAngle( int degree ) override;
 
   /**
-   * @copydoc Dali::Internal::Adaptor::WindowBase::GetWindowRotationAngle()
-   */
-  virtual void GetWindowRotationAngle() override;
-
-  /**
    * @copydoc Dali::Internal::Adaptor::WindowBase::WindowRotationCompleted()
    */
   virtual void WindowRotationCompleted( int degree, int width, int height ) override;
@@ -342,15 +337,19 @@ public:
   virtual void SetTransparency( bool transparent ) override;
 
   /**
-   * @brief Return the orientation of the surface.
-   * @return The orientation
+   * @copydoc Dali::Internal::Adaptor::WindowBase::SetParent()
+   */
+  virtual void SetParent( WindowBase* parentWinBase ) override;
+
+  /**
+   * @copydoc  Dali::Internal::Adaptor::WindowBase::CreateFrameRenderedSyncFence()
    */
-  virtual int GetOrientation() const override;
+  virtual int CreateFrameRenderedSyncFence() override;
 
   /**
-   * @copydoc Dali::Internal::Adaptor::WindowBase::SetParent()
+   * @copydoc  Dali::Internal::Adaptor::WindowBase::CreateFramePresentedSyncFence()
    */
-  virtual void SetParent( WindowBase* parentWinBase ) override;
+  virtual int CreateFramePresentedSyncFence() override;
 
 private:
 
@@ -364,7 +363,7 @@ private:
    * @param surface Any containing a surface id, or can be empty
    * @return surface id, or zero if surface is empty
    */
-  unsigned int GetSurfaceId( Any surface ) const;
+  uintptr_t GetSurfaceId( Any surface ) const;
 
   /**
    * @brief Create window
@@ -374,7 +373,7 @@ private:
   /**
    * @brief Sets up an already created window.
    */
-  void SetWinWindow( unsigned int surfaceId );
+  void SetWinWindow( uintptr_t surfaceId );
 
 private:
 
@@ -393,7 +392,7 @@ private:
   bool                                 mIsTransparent:1;    ///< Whether the window is transparent (32 bit or 24 bit)
   bool                                 mRotationAppSet:1;
 
-  WindowsPlatformImplementation::WindowImpl mWindowImpl;
+  WindowsPlatform::WindowImpl mWindowImpl;
 };
 
 } // namespace Adaptor