Title: [107234] trunk/Source/WebKit2
- Revision
- 107234
- Author
- [email protected]
- Date
- 2012-02-09 06:35:14 -0800 (Thu, 09 Feb 2012)
Log Message
[Qt] Remove WebGraphicsLayer::updateTileBuffersRecursively
https://bugs.webkit.org/show_bug.cgi?id=78105
Reviewed by Kenneth Rohde Christiansen.
The method is unused.
* WebProcess/WebCoreSupport/WebGraphicsLayer.cpp:
* WebProcess/WebCoreSupport/WebGraphicsLayer.h:
(WebGraphicsLayer):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (107233 => 107234)
--- trunk/Source/WebKit2/ChangeLog 2012-02-09 14:33:33 UTC (rev 107233)
+++ trunk/Source/WebKit2/ChangeLog 2012-02-09 14:35:14 UTC (rev 107234)
@@ -1,5 +1,18 @@
2012-02-08 Jocelyn Turcotte <[email protected]>
+ [Qt] Remove WebGraphicsLayer::updateTileBuffersRecursively
+ https://bugs.webkit.org/show_bug.cgi?id=78105
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ The method is unused.
+
+ * WebProcess/WebCoreSupport/WebGraphicsLayer.cpp:
+ * WebProcess/WebCoreSupport/WebGraphicsLayer.h:
+ (WebGraphicsLayer):
+
+2012-02-08 Jocelyn Turcotte <[email protected]>
+
[Qt] Register individual WebGraphicsLayers to LayerTreeHost instead of handling the tree as a whole.
https://bugs.webkit.org/show_bug.cgi?id=77976
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.cpp (107233 => 107234)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.cpp 2012-02-09 14:33:33 UTC (rev 107233)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.cpp 2012-02-09 14:35:14 UTC (rev 107234)
@@ -573,18 +573,6 @@
m_webGraphicsLayerClient->removeTile(id(), tileID);
}
-void WebGraphicsLayer::updateTileBuffersRecursively()
-{
- m_mainBackingStore->updateTileBuffers();
- for (size_t i = 0; i < children().size(); ++i) {
- WebGraphicsLayer* layer = toWebGraphicsLayer(this->children()[i]);
- layer->updateTileBuffersRecursively();
- }
-
- if (WebGraphicsLayer* mask = toWebGraphicsLayer(maskLayer()))
- mask->updateTileBuffersRecursively();
-}
-
void WebGraphicsLayer::updateContentBuffers()
{
// Backing-stores for directly composited images is handled in LayerTreeHost.
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.h (107233 => 107234)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.h 2012-02-09 14:33:33 UTC (rev 107233)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebGraphicsLayer.h 2012-02-09 14:35:14 UTC (rev 107234)
@@ -138,7 +138,6 @@
void setWebGraphicsLayerClient(WebKit::WebGraphicsLayerClient*);
bool isReadyForTileBufferSwap() const;
- void updateTileBuffersRecursively();
void updateContentBuffers();
void purgeBackingStores();
void recreateBackingStoreIfNeeded();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes