OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
5 * | 5 * |
6 * Other contributors: | 6 * Other contributors: |
7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 return const_cast<RenderLayer*>(this); | 1126 return const_cast<RenderLayer*>(this); |
1127 | 1127 |
1128 for (const RenderLayer* curr = compositingContainer(); curr; curr = curr->co
mpositingContainer()) { | 1128 for (const RenderLayer* curr = compositingContainer(); curr; curr = curr->co
mpositingContainer()) { |
1129 if (curr->compositingState() == PaintsIntoOwnBacking || curr->compositin
gState() == PaintsIntoGroupedBacking) | 1129 if (curr->compositingState() == PaintsIntoOwnBacking || curr->compositin
gState() == PaintsIntoGroupedBacking) |
1130 return const_cast<RenderLayer*>(curr); | 1130 return const_cast<RenderLayer*>(curr); |
1131 } | 1131 } |
1132 | 1132 |
1133 return 0; | 1133 return 0; |
1134 } | 1134 } |
1135 | 1135 |
| 1136 void RenderLayer::clearAncestorDependentPropertyCache() |
| 1137 { |
| 1138 ASSERT(isInCompositingUpdate()); |
| 1139 m_ancestorDependentPropertyCache.clear(); |
| 1140 } |
| 1141 |
| 1142 void RenderLayer::ensureAncestorDependentPropertyCache() const |
| 1143 { |
| 1144 ASSERT(isInCompositingUpdate()); |
| 1145 if (m_ancestorDependentPropertyCache) |
| 1146 return; |
| 1147 m_ancestorDependentPropertyCache = adoptPtr(new AncestorDependentPropertyCac
he()); |
| 1148 } |
| 1149 |
1136 RenderLayer* RenderLayer::ancestorCompositedScrollingLayer() const | 1150 RenderLayer* RenderLayer::ancestorCompositedScrollingLayer() const |
1137 { | 1151 { |
1138 ASSERT(isAllowedToQueryCompositingState()); | |
1139 | |
1140 if (!renderer()->acceleratedCompositingForOverflowScrollEnabled()) | 1152 if (!renderer()->acceleratedCompositingForOverflowScrollEnabled()) |
1141 return 0; | 1153 return 0; |
1142 | 1154 |
| 1155 ASSERT(isInCompositingUpdate() || !m_ancestorDependentPropertyCache); |
| 1156 |
| 1157 if (m_ancestorDependentPropertyCache && !m_ancestorDependentPropertyCache->a
ncestorCompositedScrollingLayerDirty()) |
| 1158 return m_ancestorDependentPropertyCache->ancestorCompositedScrollingLaye
r(); |
| 1159 |
1143 RenderObject* containingBlock = renderer()->containingBlock(); | 1160 RenderObject* containingBlock = renderer()->containingBlock(); |
1144 if (!containingBlock) | 1161 if (!containingBlock) |
1145 return 0; | 1162 return 0; |
1146 | 1163 |
| 1164 if (isInCompositingUpdate()) |
| 1165 ensureAncestorDependentPropertyCache(); |
| 1166 |
| 1167 RenderLayer* ancestorCompositedScrollingLayer = 0; |
1147 for (RenderLayer* ancestorLayer = containingBlock->enclosingLayer(); ancesto
rLayer; ancestorLayer = ancestorLayer->parent()) { | 1168 for (RenderLayer* ancestorLayer = containingBlock->enclosingLayer(); ancesto
rLayer; ancestorLayer = ancestorLayer->parent()) { |
1148 if (ancestorLayer->needsCompositedScrolling()) | 1169 if (ancestorLayer->needsCompositedScrolling()) { |
1149 return ancestorLayer; | 1170 ancestorCompositedScrollingLayer = ancestorLayer; |
| 1171 break; |
| 1172 } |
1150 } | 1173 } |
1151 | 1174 |
1152 return 0; | 1175 if (m_ancestorDependentPropertyCache) |
| 1176 m_ancestorDependentPropertyCache->setAncestorCompositedScrollingLayer(an
cestorCompositedScrollingLayer); |
| 1177 |
| 1178 return ancestorCompositedScrollingLayer; |
1153 } | 1179 } |
1154 | 1180 |
1155 RenderLayer* RenderLayer::ancestorScrollingLayer() const | 1181 RenderLayer* RenderLayer::ancestorScrollingLayer() const |
1156 { | 1182 { |
1157 RenderObject* containingBlock = renderer()->containingBlock(); | 1183 RenderObject* containingBlock = renderer()->containingBlock(); |
1158 if (!containingBlock) | 1184 if (!containingBlock) |
1159 return 0; | 1185 return 0; |
1160 | 1186 |
1161 for (RenderLayer* ancestorLayer = containingBlock->enclosingLayer(); ancesto
rLayer; ancestorLayer = ancestorLayer->parent()) { | 1187 for (RenderLayer* ancestorLayer = containingBlock->enclosingLayer(); ancesto
rLayer; ancestorLayer = ancestorLayer->parent()) { |
1162 if (ancestorLayer->scrollsOverflow()) | 1188 if (ancestorLayer->scrollsOverflow()) |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 RenderLayer* RenderLayer::scrollParent() const | 1696 RenderLayer* RenderLayer::scrollParent() const |
1671 { | 1697 { |
1672 if (!renderer()->compositorDrivenAcceleratedScrollingEnabled()) | 1698 if (!renderer()->compositorDrivenAcceleratedScrollingEnabled()) |
1673 return 0; | 1699 return 0; |
1674 | 1700 |
1675 // Normal flow elements will be parented under the main scrolling layer, so | 1701 // Normal flow elements will be parented under the main scrolling layer, so |
1676 // we don't need a scroll parent/child relationship to get them to scroll. | 1702 // we don't need a scroll parent/child relationship to get them to scroll. |
1677 if (stackingNode()->isNormalFlowOnly()) | 1703 if (stackingNode()->isNormalFlowOnly()) |
1678 return 0; | 1704 return 0; |
1679 | 1705 |
| 1706 // We should never have an ancestor dependent property cache outside of the |
| 1707 // compositing update phase. |
| 1708 ASSERT(isInCompositingUpdate() || !m_ancestorDependentPropertyCache); |
| 1709 |
1680 // A layer scrolls with its containing block. So to find the overflow scroll
ing layer | 1710 // A layer scrolls with its containing block. So to find the overflow scroll
ing layer |
1681 // that we scroll with respect to, we must ascend the layer tree until we re
ach the | 1711 // that we scroll with respect to, we must ascend the layer tree until we re
ach the |
1682 // first overflow scrolling div at or above our containing block. I will ref
er to this | 1712 // first overflow scrolling div at or above our containing block. I will ref
er to this |
1683 // layer as our 'scrolling ancestor'. | 1713 // layer as our 'scrolling ancestor'. |
1684 // | 1714 // |
1685 // Now, if we reside in a normal flow list, then we will naturally scroll wi
th our scrolling | 1715 // Now, if we reside in a normal flow list, then we will naturally scroll wi
th our scrolling |
1686 // ancestor, and we need not be composited. If, on the other hand, we reside
in a z-order | 1716 // ancestor, and we need not be composited. If, on the other hand, we reside
in a z-order |
1687 // list, and on our walk upwards to our scrolling ancestor we find no layer
that is a stacking | 1717 // list, and on our walk upwards to our scrolling ancestor we find no layer
that is a stacking |
1688 // context, then we know that in the stacking tree, we will not be in the su
btree rooted at | 1718 // context, then we know that in the stacking tree, we will not be in the su
btree rooted at |
1689 // our scrolling ancestor, and we will therefore not scroll with it. In this
case, we must | 1719 // our scrolling ancestor, and we will therefore not scroll with it. In this
case, we must |
1690 // be a composited layer since the compositor will need to take special meas
ures to ensure | 1720 // be a composited layer since the compositor will need to take special meas
ures to ensure |
1691 // that we scroll with our scrolling ancestor and it cannot do this if we do
not promote. | 1721 // that we scroll with our scrolling ancestor and it cannot do this if we do
not promote. |
| 1722 if (m_ancestorDependentPropertyCache && !m_ancestorDependentPropertyCache->s
crollParentDirty()) |
| 1723 return m_ancestorDependentPropertyCache->scrollParent(); |
| 1724 |
1692 RenderLayer* scrollParent = ancestorCompositedScrollingLayer(); | 1725 RenderLayer* scrollParent = ancestorCompositedScrollingLayer(); |
1693 | |
1694 if (!scrollParent || scrollParent->stackingNode()->isStackingContainer()) | 1726 if (!scrollParent || scrollParent->stackingNode()->isStackingContainer()) |
1695 return 0; | 1727 return 0; |
1696 | 1728 |
1697 // If we hit a stacking context on our way up to the ancestor scrolling laye
r, it will already | 1729 // If we hit a stacking context on our way up to the ancestor scrolling laye
r, it will already |
1698 // be composited due to an overflow scrolling parent, so we don't need to. | 1730 // be composited due to an overflow scrolling parent, so we don't need to. |
1699 for (RenderLayer* ancestor = parent(); ancestor && ancestor != scrollParent;
ancestor = ancestor->parent()) { | 1731 for (RenderLayer* ancestor = parent(); ancestor && ancestor != scrollParent;
ancestor = ancestor->parent()) { |
1700 if (ancestor->stackingNode()->isStackingContainer()) | 1732 if (ancestor->stackingNode()->isStackingContainer()) |
1701 return 0; | 1733 return 0; |
| 1734 if (!isInCompositingUpdate()) |
| 1735 continue; |
| 1736 if (AncestorDependentPropertyCache* ancestorCache = ancestor->m_ancestor
DependentPropertyCache.get()) { |
| 1737 if (!ancestorCache->ancestorCompositedScrollingLayerDirty() && ances
torCache->ancestorCompositedScrollingLayer() == scrollParent) { |
| 1738 scrollParent = ancestorCache->scrollParent(); |
| 1739 break; |
| 1740 } |
| 1741 } |
1702 } | 1742 } |
1703 | 1743 |
| 1744 if (m_ancestorDependentPropertyCache) |
| 1745 m_ancestorDependentPropertyCache->setScrollParent(scrollParent); |
1704 return scrollParent; | 1746 return scrollParent; |
1705 } | 1747 } |
1706 | 1748 |
1707 RenderLayer* RenderLayer::clipParent() const | 1749 RenderLayer* RenderLayer::clipParent() const |
1708 { | 1750 { |
1709 if (compositingReasons() & CompositingReasonOutOfFlowClipping && !compositor
()->clippedByAncestor(this)) { | 1751 if (compositingReasons() & CompositingReasonOutOfFlowClipping && !compositor
()->clippedByAncestor(this)) { |
1710 if (RenderObject* containingBlock = renderer()->containingBlock()) | 1752 if (RenderObject* containingBlock = renderer()->containingBlock()) |
1711 return containingBlock->enclosingLayer()->enclosingCompositingLayer(
); | 1753 return containingBlock->enclosingLayer()->enclosingCompositingLayer(
); |
1712 } | 1754 } |
1713 return 0; | 1755 return 0; |
(...skipping 1799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3513 return PaintsIntoOwnBacking; | 3555 return PaintsIntoOwnBacking; |
3514 } | 3556 } |
3515 | 3557 |
3516 bool RenderLayer::isAllowedToQueryCompositingState() const | 3558 bool RenderLayer::isAllowedToQueryCompositingState() const |
3517 { | 3559 { |
3518 if (gCompositingQueryMode == CompositingQueriesAreAllowed) | 3560 if (gCompositingQueryMode == CompositingQueriesAreAllowed) |
3519 return true; | 3561 return true; |
3520 return renderer()->document().lifecycle().state() >= DocumentLifecycle::InCo
mpositingUpdate; | 3562 return renderer()->document().lifecycle().state() >= DocumentLifecycle::InCo
mpositingUpdate; |
3521 } | 3563 } |
3522 | 3564 |
| 3565 bool RenderLayer::isInCompositingUpdate() const |
| 3566 { |
| 3567 return renderer()->document().lifecycle().state() == DocumentLifecycle::InCo
mpositingUpdate; |
| 3568 } |
| 3569 |
3523 CompositedLayerMappingPtr RenderLayer::compositedLayerMapping() const | 3570 CompositedLayerMappingPtr RenderLayer::compositedLayerMapping() const |
3524 { | 3571 { |
3525 ASSERT(isAllowedToQueryCompositingState()); | 3572 ASSERT(isAllowedToQueryCompositingState()); |
3526 return m_compositedLayerMapping.get(); | 3573 return m_compositedLayerMapping.get(); |
3527 } | 3574 } |
3528 | 3575 |
3529 CompositedLayerMappingPtr RenderLayer::ensureCompositedLayerMapping() | 3576 CompositedLayerMappingPtr RenderLayer::ensureCompositedLayerMapping() |
3530 { | 3577 { |
3531 if (!m_compositedLayerMapping) { | 3578 if (!m_compositedLayerMapping) { |
3532 m_compositedLayerMapping = adoptPtr(new CompositedLayerMapping(*this)); | 3579 m_compositedLayerMapping = adoptPtr(new CompositedLayerMapping(*this)); |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4052 rects.set(this, rect); | 4099 rects.set(this, rect); |
4053 } | 4100 } |
4054 } | 4101 } |
4055 } | 4102 } |
4056 | 4103 |
4057 DisableCompositingQueryAsserts::DisableCompositingQueryAsserts() | 4104 DisableCompositingQueryAsserts::DisableCompositingQueryAsserts() |
4058 : m_disabler(gCompositingQueryMode, CompositingQueriesAreAllowed) { } | 4105 : m_disabler(gCompositingQueryMode, CompositingQueriesAreAllowed) { } |
4059 | 4106 |
4060 COMPILE_ASSERT(1 << RenderLayer::ViewportConstrainedNotCompositedReasonBits >= R
enderLayer::NumNotCompositedReasons, too_many_viewport_constrained_not_compositi
ng_reasons); | 4107 COMPILE_ASSERT(1 << RenderLayer::ViewportConstrainedNotCompositedReasonBits >= R
enderLayer::NumNotCompositedReasons, too_many_viewport_constrained_not_compositi
ng_reasons); |
4061 | 4108 |
| 4109 RenderLayer::AncestorDependentPropertyCache::AncestorDependentPropertyCache() |
| 4110 : m_ancestorCompositedScrollingLayer(0) |
| 4111 , m_scrollParent(0) |
| 4112 , m_ancestorCompositedScrollingLayerDirty(true) |
| 4113 , m_scrollParentDirty(true) { } |
| 4114 |
| 4115 RenderLayer* RenderLayer::AncestorDependentPropertyCache::scrollParent() const |
| 4116 { |
| 4117 ASSERT(!m_scrollParentDirty); |
| 4118 return m_scrollParent; |
| 4119 } |
| 4120 |
| 4121 void RenderLayer::AncestorDependentPropertyCache::setScrollParent(RenderLayer* s
crollParent) |
| 4122 { |
| 4123 m_scrollParent = scrollParent; |
| 4124 m_scrollParentDirty = false; |
| 4125 } |
| 4126 |
| 4127 RenderLayer* RenderLayer::AncestorDependentPropertyCache::ancestorCompositedScro
llingLayer() const |
| 4128 { |
| 4129 ASSERT(!m_ancestorCompositedScrollingLayerDirty); |
| 4130 return m_ancestorCompositedScrollingLayer; |
| 4131 } |
| 4132 |
| 4133 void RenderLayer::AncestorDependentPropertyCache::setAncestorCompositedScrolling
Layer(RenderLayer* layer) |
| 4134 { |
| 4135 m_ancestorCompositedScrollingLayer = layer; |
| 4136 m_ancestorCompositedScrollingLayerDirty = false; |
| 4137 } |
| 4138 |
4062 } // namespace WebCore | 4139 } // namespace WebCore |
4063 | 4140 |
4064 #ifndef NDEBUG | 4141 #ifndef NDEBUG |
4065 void showLayerTree(const WebCore::RenderLayer* layer) | 4142 void showLayerTree(const WebCore::RenderLayer* layer) |
4066 { | 4143 { |
4067 if (!layer) | 4144 if (!layer) |
4068 return; | 4145 return; |
4069 | 4146 |
4070 if (WebCore::LocalFrame* frame = layer->renderer()->frame()) { | 4147 if (WebCore::LocalFrame* frame = layer->renderer()->frame()) { |
4071 WTF::String output = externalRepresentation(frame, WebCore::RenderAsText
ShowAllLayers | WebCore::RenderAsTextShowLayerNesting | WebCore::RenderAsTextSho
wCompositedLayers | WebCore::RenderAsTextShowAddresses | WebCore::RenderAsTextSh
owIDAndClass | WebCore::RenderAsTextDontUpdateLayout | WebCore::RenderAsTextShow
LayoutState); | 4148 WTF::String output = externalRepresentation(frame, WebCore::RenderAsText
ShowAllLayers | WebCore::RenderAsTextShowLayerNesting | WebCore::RenderAsTextSho
wCompositedLayers | WebCore::RenderAsTextShowAddresses | WebCore::RenderAsTextSh
owIDAndClass | WebCore::RenderAsTextDontUpdateLayout | WebCore::RenderAsTextShow
LayoutState); |
4072 fprintf(stderr, "%s\n", output.utf8().data()); | 4149 fprintf(stderr, "%s\n", output.utf8().data()); |
4073 } | 4150 } |
4074 } | 4151 } |
4075 | 4152 |
4076 void showLayerTree(const WebCore::RenderObject* renderer) | 4153 void showLayerTree(const WebCore::RenderObject* renderer) |
4077 { | 4154 { |
4078 if (!renderer) | 4155 if (!renderer) |
4079 return; | 4156 return; |
4080 showLayerTree(renderer->enclosingLayer()); | 4157 showLayerTree(renderer->enclosingLayer()); |
4081 } | 4158 } |
4082 #endif | 4159 #endif |
OLD | NEW |