Disable partial update tile
authorEunsol Park <eunsol47.park@samsung.com>
Fri, 3 May 2013 08:51:12 +0000 (17:51 +0900)
committerEunsol Park <eunsol47.park@samsung.com>
Fri, 3 May 2013 13:22:01 +0000 (22:22 +0900)
[Title] Disable partial update tile
[Issue#] NA
[Problem] vedio controller was broken
[Cause]
[Solution] Disable partial update tile

Change-Id: I92ee9b82536cb8e97d5157660578f63a42d05627

Source/WebKit2/WebProcess/WebPage/efl/tizen/TiledBackingStoreRemoteTileTizen.cpp

index fa2578d..d1b3fd2 100644 (file)
@@ -57,8 +57,10 @@ static inline bool needUpdateBackBufferPartially(const IntRect& entireRect, cons
     if (entireRect.width() * entireRect.height() < 147456)
         return false;
 
-    if (entireRect.size() != dirtyRect.size())
-        return true;
+    if (entireRect.size() != dirtyRect.size()) {
+        //FIXME: vedio controller was broken. It will be fixed and change flag.
+        return false;
+    }
     return false;
 }