Revert "[Tizen] Implement partial update"
[platform/core/uifw/dali-core.git] / dali / internal / render / common / render-list.h
old mode 100755 (executable)
new mode 100644 (file)
index 90925eb..41af19f
@@ -63,8 +63,7 @@ public:
   : mNextFree( 0 ),
     mClippingBox( NULL ),
     mSourceLayer( NULL ),
-    mHasColorRenderItems( false ),
-    mPartialUpdateEnabled( false )
+    mHasColorRenderItems( false )
   {
   }
 
@@ -259,24 +258,6 @@ public:
     return mHasColorRenderItems;
   }
 
-  /**
-   * Enable/Disable Partial update dirty flag
-   * @param[in] true to mark dirty else false
-   */
-  void SetPartialUpdateEnabled( bool value )
-  {
-    mPartialUpdateEnabled = value;
-  }
-
-  /**
-   * Get Partial update dirty flag
-   * @return true if dirty else false
-   */
-  bool IsPartialUpdateEnabled() const
-  {
-    return mPartialUpdateEnabled;
-  }
-
 private:
 
   /*
@@ -291,7 +272,6 @@ private:
   ClippingBox* mClippingBox;               ///< The clipping box, in window coordinates, when clipping is enabled
   Layer*       mSourceLayer;              ///< The originating layer where the renderers are from
   bool         mHasColorRenderItems : 1;  ///< True if list contains color render items
-  bool         mPartialUpdateEnabled : 1; //< True if partial update is needed.
 
 };