Changeset 183242 in webkit
- Timestamp:
- Apr 23, 2015, 9:36:12 PM (10 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r183241 r183242 1 2015-04-23 Simon Fraser <simon.fraser@apple.com> 2 3 Make it possible to detach GraphicsLayerCA backing store 4 https://bugs.webkit.org/show_bug.cgi?id=144140 5 6 Reviewed by Tim Horton. 7 8 This changes makes it possible to denote a GraphicsLayerCA's backing store 9 as "attached" or not. When not attached, the backing store is made volatile 10 and can be purged. This will be used in a future patch. 11 12 * platform/graphics/ca/GraphicsLayerCA.h: Add updateBackingStoreAttachment(). 13 * platform/graphics/ca/PlatformCALayer.h: 14 * platform/graphics/ca/mac/PlatformCALayerMac.h: 15 * platform/graphics/ca/mac/PlatformCALayerMac.mm: Stubs. In future, we could 16 remove backing store on Mac and iOS WK1 too. 17 (PlatformCALayerMac::setBackingStoreAttached): 18 (PlatformCALayerMac::backingStoreAttached): 19 1 20 2015-04-23 Simon Fraser <simon.fraser@apple.com> 2 21 -
trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h
r183241 r183242 364 364 void updateStructuralLayer(); 365 365 void updateDrawsContent(); 366 void updateBackingStoreAttachment(); 366 367 void updateBackgroundColor(); 367 368 -
trunk/Source/WebCore/platform/graphics/ca/PlatformCALayer.h
r180965 r183242 177 177 virtual void setContentsRect(const FloatRect&) = 0; 178 178 179 virtual void setBackingStoreAttached(bool) = 0; 180 virtual bool backingStoreAttached() const = 0; 181 179 182 virtual void setMinificationFilter(FilterType) = 0; 180 183 virtual void setMagnificationFilter(FilterType) = 0; -
trunk/Source/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.h
r180882 r183242 89 89 90 90 virtual void setHidden(bool) override; 91 92 virtual void setBackingStoreAttached(bool) override; 93 virtual bool backingStoreAttached() const override; 91 94 92 95 WEBCORE_EXPORT virtual void setGeometryFlipped(bool) override; -
trunk/Source/WebCore/platform/graphics/ca/mac/PlatformCALayerMac.mm
r182516 r183242 595 595 } 596 596 597 void PlatformCALayerMac::setBackingStoreAttached(bool) 598 { 599 // We could throw away backing store here with setContents:nil. 600 } 601 602 bool PlatformCALayerMac::backingStoreAttached() const 603 { 604 return true; 605 } 606 597 607 void PlatformCALayerMac::setGeometryFlipped(bool value) 598 608 { -
trunk/Source/WebKit2/ChangeLog
r183228 r183242 1 2015-04-23 Simon Fraser <simon.fraser@apple.com> 2 3 Make it possible to detach GraphicsLayerCA backing store 4 https://bugs.webkit.org/show_bug.cgi?id=144140 5 6 Reviewed by Tim Horton. 7 8 This changes makes it possible to denote a GraphicsLayerCA's backing store 9 as "attached" or not. When not attached, the backing store is made volatile 10 and can be purged. This will be used in a future patch. 11 12 * Shared/mac/RemoteLayerBackingStore.mm: 13 (WebKit::RemoteLayerBackingStore::~RemoteLayerBackingStore): Whitespace. 14 (WebKit::RemoteLayerBackingStore::display): If backingStoreWillBeDisplayed() 15 returns true, this indicates that the backing store was brought out of the 16 "unreachable" list, so return true even if the backing store doesn't require 17 painting. 18 * Shared/mac/RemoteLayerBackingStoreCollection.h: C++11 initializer, and comments. 19 * Shared/mac/RemoteLayerBackingStoreCollection.mm: 20 (WebKit::RemoteLayerBackingStoreCollection::RemoteLayerBackingStoreCollection): 21 (WebKit::RemoteLayerBackingStoreCollection::backingStoreWillBeDisplayed): Return true 22 if the caller will need to submit the backing store in the current transaction. 23 (WebKit::RemoteLayerBackingStoreCollection::backingStoreBecameUnreachable): This 24 explicit dirtying is no longer necessary given the backingStoreWillBeDisplayed() change. 25 * Shared/mac/RemoteLayerTreePropertyApplier.mm: 26 (WebKit::applyPropertiesToLayer): Only set the layer's backing if we both have backing 27 store, and it's attached. 28 * Shared/mac/RemoteLayerTreeTransaction.h: New bit, and data member. 29 * Shared/mac/RemoteLayerTreeTransaction.mm: 30 (WebKit::RemoteLayerTreeTransaction::LayerProperties::LayerProperties): 31 (WebKit::RemoteLayerTreeTransaction::LayerProperties::encode): 32 (WebKit::RemoteLayerTreeTransaction::LayerProperties::decode): 33 (WebKit::dumpChangedLayers): 34 * WebProcess/WebPage/mac/PlatformCALayerRemote.cpp: 35 (WebKit::PlatformCALayerRemote::recursiveBuildTransaction): Only call display() 36 on the backing store if it's attached. 37 (WebKit::PlatformCALayerRemote::setBackingStoreAttached): 38 (WebKit::PlatformCALayerRemote::backingStoreAttached): 39 * WebProcess/WebPage/mac/PlatformCALayerRemote.h: 40 * WebProcess/WebPage/mac/RemoteLayerTreeContext.h: 41 * WebProcess/WebPage/mac/RemoteLayerTreeContext.mm: 42 (WebKit::RemoteLayerTreeContext::backingStoreWillBeDisplayed): 43 1 44 2015-04-23 Tim Horton <timothy_horton@apple.com> 2 45 -
trunk/Source/WebKit2/Shared/mac/RemoteLayerBackingStore.mm
r180965 r183242 67 67 if (!m_layer) 68 68 return; 69 69 70 if (RemoteLayerTreeContext* context = m_layer->context()) 70 71 context->backingStoreWillBeDestroyed(*this); … … 207 208 m_lastDisplayTime = std::chrono::steady_clock::now(); 208 209 210 bool needToEncodeBackingStore = false; 209 211 if (RemoteLayerTreeContext* context = m_layer->context()) 210 context->backingStoreWillBeDisplayed(*this);212 needToEncodeBackingStore = context->backingStoreWillBeDisplayed(*this); 211 213 212 214 // Make the previous front buffer non-volatile early, so that we can dirty the whole layer if it comes back empty. … … 216 218 217 219 if (m_dirtyRegion.isEmpty() || expandedScaledSize.isEmpty()) 218 return false;220 return needToEncodeBackingStore; 219 221 220 222 IntRect layerBounds(IntPoint(), expandedIntSize(m_size)); -
trunk/Source/WebKit2/Shared/mac/RemoteLayerBackingStoreCollection.h
r176459 r183242 46 46 void backingStoreWillBeDestroyed(RemoteLayerBackingStore&); 47 47 48 void backingStoreWillBeDisplayed(RemoteLayerBackingStore&); 48 // Return value indicates whether the backing store needs to be included in the transaction. 49 bool backingStoreWillBeDisplayed(RemoteLayerBackingStore&); 49 50 void backingStoreBecameUnreachable(RemoteLayerBackingStore&); 50 51 … … 68 69 HashSet<RemoteLayerBackingStore*> m_liveBackingStore; 69 70 HashSet<RemoteLayerBackingStore*> m_unparentedBackingStore; 71 72 // Only used during a single flush. 70 73 HashSet<RemoteLayerBackingStore*> m_reachableBackingStoreInLatestFlush; 71 74 72 75 WebCore::Timer m_volatilityTimer; 73 76 74 bool m_inLayerFlush ;77 bool m_inLayerFlush { false }; 75 78 }; 76 79 -
trunk/Source/WebKit2/Shared/mac/RemoteLayerBackingStoreCollection.mm
r176459 r183242 39 39 RemoteLayerBackingStoreCollection::RemoteLayerBackingStoreCollection() 40 40 : m_volatilityTimer(*this, &RemoteLayerBackingStoreCollection::volatilityTimerFired) 41 , m_inLayerFlush(false)42 41 { 43 42 } … … 89 88 } 90 89 91 voidRemoteLayerBackingStoreCollection::backingStoreWillBeDisplayed(RemoteLayerBackingStore& backingStore)90 bool RemoteLayerBackingStoreCollection::backingStoreWillBeDisplayed(RemoteLayerBackingStore& backingStore) 92 91 { 93 92 ASSERT(m_inLayerFlush); … … 96 95 auto backingStoreIter = m_unparentedBackingStore.find(&backingStore); 97 96 if (backingStoreIter == m_unparentedBackingStore.end()) 98 return; 97 return false; 98 99 99 m_liveBackingStore.add(&backingStore); 100 100 m_unparentedBackingStore.remove(backingStoreIter); 101 return true; 101 102 } 102 103 … … 142 143 m_liveBackingStore.remove(backingStoreIter); 143 144 144 // If a layer with backing store is removed from the tree, mark it as having changed backing store, so that145 // on the commit which returns it to the tree, we serialize the backing store (despite possibly not painting).146 backingStore.layer()->properties().notePropertiesChanged(RemoteLayerTreeTransaction::BackingStoreChanged);147 148 145 // This will not succeed in marking all buffers as volatile, because the commit unparenting the layer hasn't 149 146 // made it to the UI process yet. The volatility timer will finish marking the remaining buffers later. -
trunk/Source/WebKit2/Shared/mac/RemoteLayerTreePropertyApplier.mm
r180965 r183242 234 234 layer.timeOffset = properties.timeOffset; 235 235 236 if (properties.changedProperties & RemoteLayerTreeTransaction::BackingStoreChanged) { 237 if (RemoteLayerBackingStore* backingStore = properties.backingStore.get()) 236 if (properties.changedProperties & RemoteLayerTreeTransaction::BackingStoreChanged 237 || properties.changedProperties & RemoteLayerTreeTransaction::BackingStoreAttachmentChanged) 238 { 239 RemoteLayerBackingStore* backingStore = properties.backingStore.get(); 240 if (backingStore && properties.backingStoreAttached) 238 241 backingStore->applyBackingStoreToLayer(layer); 239 242 else { -
trunk/Source/WebKit2/Shared/mac/RemoteLayerTreeTransaction.h
r180882 r183242 82 82 TimeOffsetChanged = 1LLU << 29, 83 83 BackingStoreChanged = 1LLU << 30, 84 FiltersChanged = 1LLU << 31, 85 AnimationsChanged = 1LLU << 32, 86 EdgeAntialiasingMaskChanged = 1LLU << 33, 87 CustomAppearanceChanged = 1LLU << 34 84 BackingStoreAttachmentChanged = 1LLU << 31, 85 FiltersChanged = 1LLU << 32, 86 AnimationsChanged = 1LLU << 33, 87 EdgeAntialiasingMaskChanged = 1LLU << 34, 88 CustomAppearanceChanged = 1LLU << 35, 88 89 }; 89 90 typedef uint64_t LayerChange; … … 157 158 WebCore::WindRule windRule; 158 159 bool hidden; 160 bool backingStoreAttached; 159 161 bool geometryFlipped; 160 162 bool doubleSided; -
trunk/Source/WebKit2/Shared/mac/RemoteLayerTreeTransaction.mm
r181191 r183242 99 99 , windRule(RULE_NONZERO) 100 100 , hidden(false) 101 , backingStoreAttached(true) 101 102 , geometryFlipped(false) 102 103 , doubleSided(true) … … 135 136 , windRule(other.windRule) 136 137 , hidden(other.hidden) 138 , backingStoreAttached(other.backingStoreAttached) 137 139 , geometryFlipped(other.geometryFlipped) 138 140 , doubleSided(other.doubleSided) … … 255 257 encoder << *backingStore; 256 258 } 259 260 if (changedProperties & BackingStoreAttachmentChanged) 261 encoder << backingStoreAttached; 257 262 258 263 if (changedProperties & FiltersChanged) … … 453 458 } else 454 459 result.backingStore = nullptr; 460 } 461 462 if (result.changedProperties & BackingStoreAttachmentChanged) { 463 if (!decoder.decode(result.backingStoreAttached)) 464 return false; 455 465 } 456 466 … … 1182 1192 } 1183 1193 1194 if (layerProperties.changedProperties & RemoteLayerTreeTransaction::BackingStoreAttachmentChanged) 1195 dumpProperty(ts, "backingStoreAttached", layerProperties.backingStoreAttached); 1196 1184 1197 if (layerProperties.changedProperties & RemoteLayerTreeTransaction::FiltersChanged) 1185 1198 dumpProperty(ts, "filters", layerProperties.filters ? *layerProperties.filters : FilterOperations()); -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemote.cpp
r180882 r183242 154 154 } 155 155 156 if (m_properties.backingStore && m_properties.backingStore ->display())156 if (m_properties.backingStore && m_properties.backingStoreAttached && m_properties.backingStore->display()) 157 157 m_properties.notePropertiesChanged(RemoteLayerTreeTransaction::BackingStoreChanged); 158 158 … … 503 503 } 504 504 505 void PlatformCALayerRemote::setBackingStoreAttached(bool value) 506 { 507 if (m_properties.backingStoreAttached == value) 508 return; 509 510 m_properties.backingStoreAttached = value; 511 m_properties.notePropertiesChanged(RemoteLayerTreeTransaction::BackingStoreAttachmentChanged); 512 } 513 514 bool PlatformCALayerRemote::backingStoreAttached() const 515 { 516 return m_properties.backingStoreAttached; 517 } 518 505 519 void PlatformCALayerRemote::setGeometryFlipped(bool value) 506 520 { -
trunk/Source/WebKit2/WebProcess/WebPage/mac/PlatformCALayerRemote.h
r180882 r183242 95 95 virtual void setHidden(bool) override; 96 96 97 virtual void setBackingStoreAttached(bool) override; 98 virtual bool backingStoreAttached() const override; 99 97 100 virtual void setGeometryFlipped(bool) override; 98 101 -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeContext.h
r179630 r183242 52 52 void backingStoreWasCreated(RemoteLayerBackingStore&); 53 53 void backingStoreWillBeDestroyed(RemoteLayerBackingStore&); 54 voidbackingStoreWillBeDisplayed(RemoteLayerBackingStore&);54 bool backingStoreWillBeDisplayed(RemoteLayerBackingStore&); 55 55 56 56 WebCore::LayerPool& layerPool() { return m_layerPool; } -
trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeContext.mm
r179630 r183242 95 95 } 96 96 97 voidRemoteLayerTreeContext::backingStoreWillBeDisplayed(RemoteLayerBackingStore& backingStore)97 bool RemoteLayerTreeContext::backingStoreWillBeDisplayed(RemoteLayerBackingStore& backingStore) 98 98 { 99 m_backingStoreCollection.backingStoreWillBeDisplayed(backingStore);99 return m_backingStoreCollection.backingStoreWillBeDisplayed(backingStore); 100 100 } 101 101
Note:
See TracChangeset
for help on using the changeset viewer.