Changeset 188530 in webkit
- Timestamp:
- Aug 17, 2015, 11:32:49 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r188527 r188530 1 2015-08-17 Simon Fraser <simon.fraser@apple.com> 2 3 will-change should sometimes trigger compositing 4 https://bugs.webkit.org/show_bug.cgi?id=148072 5 6 Reviewed by Tim Horton. 7 8 * compositing/layer-creation/will-change-change-expected.txt: Added. 9 * compositing/layer-creation/will-change-change.html: Added. 10 * compositing/layer-creation/will-change-layer-creation-expected.txt: Added. 11 * compositing/layer-creation/will-change-layer-creation.html: Added. 12 1 13 2015-08-17 Timothy Horton <timothy_horton@apple.com> 2 14 -
trunk/Source/JavaScriptCore/ChangeLog
r188529 r188530 1 2015-08-17 Simon Fraser <simon.fraser@apple.com> 2 3 will-change should sometimes trigger compositing 4 https://bugs.webkit.org/show_bug.cgi?id=148072 5 6 Reviewed by Tim Horton. 7 8 Include will-change as a reason for compositing. 9 10 * inspector/protocol/LayerTree.json: 11 1 12 2015-08-17 Yusuke Suzuki <utatane.tea@gmail.com> 2 13 -
trunk/Source/JavaScriptCore/inspector/protocol/LayerTree.json
r174906 r188530 72 72 { "name": "perspective", "type": "boolean", "optional": true, "description": "Composition due to association with an element with perspective applied." }, 73 73 { "name": "preserve3D", "type": "boolean", "optional": true, "description": "Composition due to association with an element with a \"transform-style: preserve-3d\" style." }, 74 { "name": "willChange", "type": "boolean", "optional": true, "description": "Composition due to association with an element with a \"will-change\" style." }, 74 75 { "name": "root", "type": "boolean", "optional": true, "description": "Composition due to association with the root element." }, 75 76 { "name": "blending", "type": "boolean", "optional": true, "description": "Composition due to association with an element with a \"blend-mode\" style." } -
trunk/Source/WebCore/ChangeLog
r188527 r188530 1 2015-08-17 Simon Fraser <simon.fraser@apple.com> 2 3 will-change should sometimes trigger compositing 4 https://bugs.webkit.org/show_bug.cgi?id=148072 5 6 Reviewed by Tim Horton. 7 8 Implement the compositing side-effects of will-change, if any of the 9 following properties are specified: 10 opacity 11 filter (as -webkit-filter) 12 backdrop-filter (as -webkit-backdrop-filter) 13 transform (on transformable elements only) 14 15 Tests: compositing/layer-creation/will-change-change.html 16 compositing/layer-creation/will-change-layer-creation.html 17 18 * inspector/InspectorLayerTreeAgent.cpp: 19 (WebCore::InspectorLayerTreeAgent::reasonsForCompositingLayer): Tell the inspector 20 about will-change. 21 * rendering/RenderElement.cpp: 22 (WebCore::RenderElement::adjustStyleDifference): Need to trigger a recomposite if 23 will-change includes a compositing trigger property. This gets called before and 24 after setting the style, so this checks both states. 25 (WebCore::RenderElement::shouldWillChangeCreateStackingContext): 26 * rendering/RenderElement.h: 27 (WebCore::RenderElement::willChangeCreatesStackingContext): Helper function that 28 RenderInline uses to determine if it needs to create a RenderLayer, since RenderInline 29 doesn't get automatic layer RenderLayers as a side effect of having non-auto z-index 30 in the style. 31 * rendering/RenderInline.h: Need to trigger a RenderLayer if will-change includes 32 a property that applies to inlines. 33 * rendering/RenderLayerCompositor.cpp: 34 (WebCore::RenderLayerCompositor::requiresCompositingLayer): Call requiresCompositingForWillChange(). 35 (WebCore::RenderLayerCompositor::requiresOwnBackingStore): Call requiresCompositingForWillChange(). 36 (WebCore::RenderLayerCompositor::reasonsForCompositing): Include requiresCompositingForWillChange(). 37 (WebCore::RenderLayerCompositor::requiresCompositingForWillChange): If will-change contains a 38 property that would trigger compositing on this element, return true. 39 * rendering/RenderLayerCompositor.h: 40 * rendering/style/RenderStyle.cpp: 41 (WebCore::RenderStyle::changeRequiresLayout): Set ContextSensitivePropertyWillChange in 42 changedContextSensitiveProperties if will-change changes. 43 * rendering/style/RenderStyle.h: Rename for clarity. 44 * rendering/style/RenderStyleConstants.h: Add ContextSensitivePropertyWillChange. 45 * rendering/style/WillChangeData.cpp: 46 (WebCore::propertyCreatesStackingContext): Subset of properties that create stacking 47 context on any element. 48 (WebCore::propertyCreatesStackingContextOnBoxesOnly): Additional properties that 49 create stacking context on boxes. 50 (WebCore::propertyTriggersCompositing): Properties that trigger compositing on 51 any element. 52 (WebCore::propertyTriggersCompositingOnBoxesOnly): Additional properties that 53 trigger compositing on boxes. 54 (WebCore::WillChangeData::addFeature): As features are added, manage a set of 55 flags to know if they trigger stacking context or compositing, on inlines and boxes. 56 (WebCore::WillChangeData::createsStackingContext): Deleted. 57 * rendering/style/WillChangeData.h: 58 (WebCore::WillChangeData::canCreateStackingContext): 59 (WebCore::WillChangeData::canCreateStackingContextOnInline): 60 (WebCore::WillChangeData::canTriggerCompositing): 61 (WebCore::WillChangeData::canTriggerCompositingOnInline): 62 1 63 2015-08-17 Timothy Horton <timothy_horton@apple.com> 2 64 -
trunk/Source/WebCore/inspector/InspectorLayerTreeAgent.cpp
r186279 r188530 308 308 compositingReasons->setPreserve3D(true); 309 309 310 if (reasonsBitmask & CompositingReasonWillChange) 311 compositingReasons->setWillChange(true); 312 310 313 if (reasonsBitmask & CompositingReasonRoot) 311 314 compositingReasons->setRoot(true); -
trunk/Source/WebCore/rendering/RenderElement.cpp
r188370 r188530 285 285 } 286 286 287 if (contextSensitiveProperties & ContextSensitivePropertyWillChange) { 288 if (style().willChange() && style().willChange()->canTriggerCompositing()) 289 diff = std::max(diff, StyleDifferenceRecompositeLayer); 290 } 291 287 292 if ((contextSensitiveProperties & ContextSensitivePropertyFilter) && hasLayer()) { 288 293 RenderLayer* layer = downcast<RenderLayerModelObject>(*this).layer(); … … 1460 1465 repaint(); 1461 1466 return true; 1467 } 1468 1469 bool RenderElement::shouldWillChangeCreateStackingContext() const 1470 { 1471 ASSERT(style().willChange()); 1472 ASSERT(style().willChange()->canCreateStackingContext()); 1473 1474 // On inlines, we only want to trigger RenderLayer creation 1475 // if will-change contains a property that applies to inlines. 1476 return is<RenderBox>(this) || (is<RenderInline>(this) && style().willChange()->canCreateStackingContextOnInline()); 1462 1477 } 1463 1478 -
trunk/Source/WebCore/rendering/RenderElement.h
r188482 r188530 166 166 bool hasClipPath() const { return style().clipPath(); } 167 167 bool hasHiddenBackface() const { return style().backfaceVisibility() == BackfaceVisibilityHidden; } 168 bool willChangeCreatesStackingContext() const 169 { 170 return style().willChange() && style().willChange()->canCreateStackingContext() && shouldWillChangeCreateStackingContext(); 171 } 168 172 169 173 // anchorRect() is conceptually similar to absoluteBoundingBoxRect(), but is intended for scrolling to an anchor. … … 305 309 306 310 void clearLayoutRootIfNeeded() const; 311 312 bool shouldWillChangeCreateStackingContext() const; 307 313 308 314 unsigned m_baseTypeFlags : 6; -
trunk/Source/WebCore/rendering/RenderInline.h
r181505 r188530 137 137 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override final; 138 138 139 virtual bool requiresLayer() const override { return isInFlowPositioned() || createsGroup() || hasClipPath() ; }139 virtual bool requiresLayer() const override { return isInFlowPositioned() || createsGroup() || hasClipPath() || willChangeCreatesStackingContext(); } 140 140 141 141 virtual LayoutUnit offsetLeft() const override final; -
trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp
r187659 r188530 2191 2191 || requiresCompositingForAnimation(renderer) 2192 2192 || requiresCompositingForFilters(renderer) 2193 || requiresCompositingForWillChange(renderer) 2193 2194 || requiresCompositingForPosition(renderer, *renderer.layer(), viewportConstrainedNotCompositedReason) 2194 2195 #if PLATFORM(IOS) … … 2233 2234 || requiresCompositingForAnimation(renderer) 2234 2235 || requiresCompositingForFilters(renderer) 2236 || requiresCompositingForWillChange(renderer) 2235 2237 || requiresCompositingForPosition(renderer, layer) 2236 2238 || requiresCompositingForOverflowScrolling(layer) … … 2293 2295 if (requiresCompositingForFilters(renderer)) 2294 2296 reasons |= CompositingReasonFilters; 2297 2298 if (requiresCompositingForWillChange(renderer)) 2299 reasons |= CompositingReasonWillChange; 2295 2300 2296 2301 if (requiresCompositingForPosition(renderer, *renderer.layer())) … … 2659 2664 } 2660 2665 2666 bool RenderLayerCompositor::requiresCompositingForWillChange(RenderLayerModelObject& renderer) const 2667 { 2668 if (!renderer.style().willChange() || !renderer.style().willChange()->canTriggerCompositing()) 2669 return false; 2670 2671 if (is<RenderBox>(renderer)) 2672 return true; 2673 2674 return renderer.style().willChange()->canTriggerCompositingOnInline(); 2675 } 2676 2661 2677 bool RenderLayerCompositor::isAsyncScrollableStickyLayer(const RenderLayer& layer, const RenderLayer** enclosingAcceleratedOverflowLayer) const 2662 2678 { -
trunk/Source/WebCore/rendering/RenderLayerCompositor.h
r187659 r188530 81 81 CompositingReasonPerspective = 1 << 21, 82 82 CompositingReasonPreserve3D = 1 << 22, 83 CompositingReasonRoot = 1 << 23, 84 CompositingReasonIsolatesCompositedBlendingDescendants = 1 << 24, 83 CompositingReasonWillChange = 1 << 23, 84 CompositingReasonRoot = 1 << 24, 85 CompositingReasonIsolatesCompositedBlendingDescendants = 1 << 25, 85 86 }; 86 87 typedef unsigned CompositingReasons; … … 423 424 bool requiresCompositingForFrame(RenderLayerModelObject&) const; 424 425 bool requiresCompositingForFilters(RenderLayerModelObject&) const; 426 bool requiresCompositingForWillChange(RenderLayerModelObject&) const; 425 427 bool requiresCompositingForScrollableFrame() const; 426 428 bool requiresCompositingForPosition(RenderLayerModelObject&, const RenderLayer&, RenderLayer::ViewportConstrainedNotCompositedReason* = nullptr) const; -
trunk/Source/WebCore/rendering/style/RenderStyle.cpp
r188512 r188530 555 555 return true; 556 556 #endif 557 558 if (!rareNonInheritedData->willChangeDataEquivalent(*other.rareNonInheritedData.get())) { 559 changedContextSensitiveProperties |= ContextSensitivePropertyWillChange; 560 // Don't return; keep looking for another change 561 } 557 562 } 558 563 -
trunk/Source/WebCore/rendering/style/RenderStyle.h
r188514 r188530 1807 1807 return false; 1808 1808 1809 return willChange()->c reatesStackingContext();1809 return willChange()->canCreateStackingContext(); 1810 1810 } 1811 1811 -
trunk/Source/WebCore/rendering/style/RenderStyleConstants.h
r187110 r188530 70 70 ContextSensitivePropertyFilter = 1 << 2, 71 71 ContextSensitivePropertyClipRect = 1 << 3, 72 ContextSensitivePropertyClipPath = 1 << 4 72 ContextSensitivePropertyClipPath = 1 << 4, 73 ContextSensitivePropertyWillChange = 1 << 5, 73 74 }; 74 75 -
trunk/Source/WebCore/rendering/style/WillChangeData.cpp
r188514 r188530 85 85 case CSSPropertyWebkitMaskImage: 86 86 case CSSPropertyWebkitMaskBoxImage: 87 #if ENABLE(CSS_REGIONS) 88 case CSSPropertyWebkitFlowFrom: 89 #endif 90 return true; 91 default: 92 return false; 93 } 94 } 95 96 static bool propertyCreatesStackingContextOnBoxesOnly(CSSPropertyID property) 97 { 98 switch (property) { 87 99 case CSSPropertyPerspective: 88 100 case CSSPropertyTransform: 89 101 case CSSPropertyTransformStyle: 90 102 case CSSPropertyWebkitTransformStyle: 91 #if ENABLE(CSS_REGIONS)92 case CSSPropertyWebkitFlowFrom:93 #endif94 103 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) 95 104 case CSSPropertyWebkitOverflowScrolling: … … 101 110 } 102 111 103 bool WillChangeData::createsStackingContext() const 112 static bool propertyTriggersCompositing(CSSPropertyID property) 104 113 { 105 for (const auto& feature : m_animatableFeatures) { 106 if (feature.feature() == Property && propertyCreatesStackingContext(feature.property())) 107 return true; 114 switch (property) { 115 case CSSPropertyOpacity: 116 case CSSPropertyWebkitFilter: 117 #if ENABLE(FILTERS_LEVEL_2) 118 case CSSPropertyWebkitBackdropFilter: 119 #endif 120 return true; 121 default: 122 return false; 108 123 } 109 return false; 124 } 125 126 static bool propertyTriggersCompositingOnBoxesOnly(CSSPropertyID property) 127 { 128 // Don't trigger for perspective and transform-style, because those 129 // only do compositing if they have a 3d-transformed descendant and 130 // we don't want to do compositing all the time. 131 // Similarly, we don't want -webkit-overflow-scrolling-touch to 132 // always composite if there's no scrollable overflow. 133 switch (property) { 134 case CSSPropertyTransform: 135 return true; 136 default: 137 return false; 138 } 110 139 } 111 140 … … 114 143 ASSERT(feature == Property || propertyID == CSSPropertyInvalid); 115 144 m_animatableFeatures.append(AnimatableFeature(feature, propertyID)); 145 146 m_canCreateStackingContextOnInline |= propertyCreatesStackingContext(propertyID); 147 m_canCreateStackingContext |= m_canCreateStackingContextOnInline | propertyCreatesStackingContextOnBoxesOnly(propertyID); 148 149 m_canTriggerCompositingOnInline |= propertyTriggersCompositing(propertyID); 150 m_canTriggerCompositing |= m_canTriggerCompositingOnInline | propertyTriggersCompositingOnBoxesOnly(propertyID); 116 151 } 117 152 -
trunk/Source/WebCore/rendering/style/WillChangeData.h
r188514 r188530 54 54 bool containsContents() const; 55 55 bool containsProperty(CSSPropertyID) const; 56 bool createsStackingContext() const; 56 57 bool canCreateStackingContext() const { return m_canCreateStackingContext; } 58 bool canCreateStackingContextOnInline() const { return m_canCreateStackingContextOnInline; } 59 60 bool canTriggerCompositing() const { return m_canTriggerCompositing; } 61 bool canTriggerCompositingOnInline() const { return m_canTriggerCompositingOnInline; } 57 62 58 63 enum Feature { … … 119 124 120 125 Vector<AnimatableFeature, 1> m_animatableFeatures; 126 bool m_canCreateStackingContext { false }; 127 bool m_canCreateStackingContextOnInline { false }; 128 bool m_canTriggerCompositing { false }; 129 bool m_canTriggerCompositingOnInline { false }; 121 130 }; 122 131 -
trunk/Source/WebInspectorUI/ChangeLog
r188506 r188530 1 2015-08-17 Simon Fraser <simon.fraser@apple.com> 2 3 will-change should sometimes trigger compositing 4 https://bugs.webkit.org/show_bug.cgi?id=148072 5 6 Reviewed by Tim Horton. 7 8 Have the web inspector show a correct compositing reason for will-change. 9 This could be improved to indicate which specific value in will-change triggered 10 the compositing. 11 12 * Localizations/en.lproj/localizedStrings.js: 13 * UserInterface/Views/LayerTreeDetailsSidebarPanel.js: 14 (WebInspector.LayerTreeDetailsSidebarPanel.prototype._populateListOfCompositingReasons): 15 (WebInspector.LayerTreeDetailsSidebarPanel): 16 1 17 2015-08-14 Matt Baker <mattbaker@apple.com> 2 18 -
trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
r188503 r188530 229 229 localizedStrings["Element has “position: sticky” style"] = "Element has “position: sticky” style"; 230 230 localizedStrings["Element has “transform-style: preserve-3d” style"] = "Element has “transform-style: preserve-3d” style"; 231 localizedStrings["Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"] = "Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"; 231 232 localizedStrings["Element is <canvas>"] = "Element is <canvas>"; 232 233 localizedStrings["Element is <iframe>"] = "Element is <iframe>"; -
trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js
r185141 r188530 430 430 if (compositingReasons.preserve3D) 431 431 addReason(WebInspector.UIString("Element has “transform-style: preserve-3d” style")); 432 if (compositingReasons.willChange) 433 addReason(WebInspector.UIString("Element has “will-change” style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter")); 432 434 if (compositingReasons.root) 433 435 addReason(WebInspector.UIString("Element is the root element"));
Note:
See TracChangeset
for help on using the changeset viewer.