Title: [188046] trunk/Source/WebCore
Revision
188046
Author
gyuyoung....@webkit.org
Date
2015-08-06 10:58:11 -0700 (Thu, 06 Aug 2015)

Log Message

[CoordinatedGraphics] Remove unused functions in Coordinated TiledBackingStore
https://bugs.webkit.org/show_bug.cgi?id=147621

Reviewed by Csaba Osztrogonác.

* platform/graphics/texmap/coordinated/TiledBackingStore.cpp: Remove setTileSize() and tileSize().
(WebCore::TiledBackingStore::setTileSize):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (188045 => 188046)


--- trunk/Source/WebCore/ChangeLog	2015-08-06 17:55:53 UTC (rev 188045)
+++ trunk/Source/WebCore/ChangeLog	2015-08-06 17:58:11 UTC (rev 188046)
@@ -1,3 +1,13 @@
+2015-08-06  Gyuyoung Kim  <gyuyoung....@webkit.org>
+
+        [CoordinatedGraphics] Remove unused functions in Coordinated TiledBackingStore
+        https://bugs.webkit.org/show_bug.cgi?id=147621
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/graphics/texmap/coordinated/TiledBackingStore.cpp: Remove setTileSize() and tileSize().
+        (WebCore::TiledBackingStore::setTileSize):
+
 2015-08-06  Anders Carlsson  <ander...@apple.com>
 
         Move the last remnants of DatabaseBackendBase to Database

Modified: trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.cpp (188045 => 188046)


--- trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.cpp	2015-08-06 17:55:53 UTC (rev 188045)
+++ trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.cpp	2015-08-06 17:58:11 UTC (rev 188046)
@@ -48,12 +48,6 @@
 {
 }
 
-void TiledBackingStore::setTileSize(const IntSize& size)
-{
-    m_tileSize = size;
-    m_tiles.clear();
-}
-
 void TiledBackingStore::setTrajectoryVector(const FloatPoint& trajectoryVector)
 {
     m_pendingTrajectoryVector = trajectoryVector;

Modified: trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.h (188045 => 188046)


--- trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.h	2015-08-06 17:55:53 UTC (rev 188045)
+++ trunk/Source/WebCore/platform/graphics/texmap/coordinated/TiledBackingStore.h	2015-08-06 17:58:11 UTC (rev 188046)
@@ -52,9 +52,6 @@
 
     void invalidate(const IntRect& dirtyRect);
 
-    IntSize tileSize() { return m_tileSize; }
-    void setTileSize(const IntSize&);
-
     IntRect mapToContents(const IntRect&) const;
     IntRect mapFromContents(const IntRect&) const;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to