OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
4 * | 4 * |
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
6 * | 6 * |
7 * Other contributors: | 7 * Other contributors: |
8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
(...skipping 49 matching lines...) Loading... |
60 #include "wtf/Allocator.h" | 60 #include "wtf/Allocator.h" |
61 #include "wtf/AutoReset.h" | 61 #include "wtf/AutoReset.h" |
62 #include "wtf/PtrUtil.h" | 62 #include "wtf/PtrUtil.h" |
63 #include <memory> | 63 #include <memory> |
64 | 64 |
65 namespace blink { | 65 namespace blink { |
66 | 66 |
67 class CompositedLayerMapping; | 67 class CompositedLayerMapping; |
68 class CompositorFilterOperations; | 68 class CompositorFilterOperations; |
69 class ComputedStyle; | 69 class ComputedStyle; |
70 class FilterEffect; | |
71 class FilterOperations; | 70 class FilterOperations; |
72 class HitTestResult; | 71 class HitTestResult; |
73 class HitTestingTransformState; | 72 class HitTestingTransformState; |
74 class PaintLayerCompositor; | 73 class PaintLayerCompositor; |
75 class PaintTiming; | 74 class PaintTiming; |
76 class TransformationMatrix; | 75 class TransformationMatrix; |
77 | 76 |
78 enum IncludeSelfOrNot { IncludeSelf, ExcludeSelf }; | 77 enum IncludeSelfOrNot { IncludeSelf, ExcludeSelf }; |
79 | 78 |
80 enum CompositingQueryMode { | 79 enum CompositingQueryMode { |
(...skipping 394 matching lines...) Loading... |
475 !m_rareData->transform->isAffine(); | 474 !m_rareData->transform->isAffine(); |
476 } | 475 } |
477 | 476 |
478 // FIXME: reflections should force transform-style to be flat in the style: | 477 // FIXME: reflections should force transform-style to be flat in the style: |
479 // https://bugs.webkit.org/show_bug.cgi?id=106959 | 478 // https://bugs.webkit.org/show_bug.cgi?id=106959 |
480 bool shouldPreserve3D() const { | 479 bool shouldPreserve3D() const { |
481 return !layoutObject()->hasReflection() && | 480 return !layoutObject()->hasReflection() && |
482 layoutObject()->style()->preserves3D(); | 481 layoutObject()->style()->preserves3D(); |
483 } | 482 } |
484 | 483 |
| 484 void filterNeedsPaintInvalidation(); |
| 485 |
485 // Returns |true| if any property that renders using filter operations is | 486 // Returns |true| if any property that renders using filter operations is |
486 // used (including, but not limited to, 'filter' and 'box-reflect'). | 487 // used (including, but not limited to, 'filter' and 'box-reflect'). |
487 bool hasFilterInducingProperty() const { | 488 bool hasFilterInducingProperty() const { |
488 return layoutObject()->hasFilterInducingProperty(); | 489 return layoutObject()->hasFilterInducingProperty(); |
489 } | 490 } |
490 | 491 |
491 void* operator new(size_t); | 492 void* operator new(size_t); |
492 // Only safe to call from LayoutBoxModelObject::destroyLayer() | 493 // Only safe to call from LayoutBoxModelObject::destroyLayer() |
493 void operator delete(void*); | 494 void operator delete(void*); |
494 | 495 |
(...skipping 96 matching lines...) Loading... |
591 | 592 |
592 // Calls the above, rounding outwards. | 593 // Calls the above, rounding outwards. |
593 LayoutRect mapLayoutRectForFilter(const LayoutRect&) const; | 594 LayoutRect mapLayoutRectForFilter(const LayoutRect&) const; |
594 | 595 |
595 bool hasFilterThatMovesPixels() const; | 596 bool hasFilterThatMovesPixels() const; |
596 | 597 |
597 PaintLayerFilterInfo* filterInfo() const { | 598 PaintLayerFilterInfo* filterInfo() const { |
598 return m_rareData ? m_rareData->filterInfo.get() : nullptr; | 599 return m_rareData ? m_rareData->filterInfo.get() : nullptr; |
599 } | 600 } |
600 PaintLayerFilterInfo& ensureFilterInfo(); | 601 PaintLayerFilterInfo& ensureFilterInfo(); |
601 void removeFilterInfo(); | |
602 | 602 |
603 void updateFilters(const ComputedStyle* oldStyle, | 603 void updateFilters(const ComputedStyle* oldStyle, |
604 const ComputedStyle& newStyle); | 604 const ComputedStyle& newStyle); |
605 | 605 |
606 Node* enclosingNode() const; | 606 Node* enclosingNode() const; |
607 | 607 |
608 bool isInTopLayer() const; | 608 bool isInTopLayer() const; |
609 | 609 |
610 bool scrollsWithViewport() const; | 610 bool scrollsWithViewport() const; |
611 bool scrollsWithRespectTo(const PaintLayer*) const; | 611 bool scrollsWithRespectTo(const PaintLayer*) const; |
(...skipping 212 matching lines...) Loading... |
824 void setHasCompositingDescendant(bool); | 824 void setHasCompositingDescendant(bool); |
825 | 825 |
826 bool shouldIsolateCompositedDescendants() const { | 826 bool shouldIsolateCompositedDescendants() const { |
827 DCHECK(isAllowedToQueryCompositingState()); | 827 DCHECK(isAllowedToQueryCompositingState()); |
828 return m_shouldIsolateCompositedDescendants; | 828 return m_shouldIsolateCompositedDescendants; |
829 } | 829 } |
830 void setShouldIsolateCompositedDescendants(bool); | 830 void setShouldIsolateCompositedDescendants(bool); |
831 | 831 |
832 void updateDescendantDependentFlags(); | 832 void updateDescendantDependentFlags(); |
833 | 833 |
| 834 void updateOrRemoveFilterEffect(); |
| 835 |
834 void updateSelfPaintingLayer(); | 836 void updateSelfPaintingLayer(); |
835 // This is O(depth) so avoid calling this in loops. Instead use optimizations | 837 // This is O(depth) so avoid calling this in loops. Instead use optimizations |
836 // like those in PaintInvalidationState. | 838 // like those in PaintInvalidationState. |
837 PaintLayer* enclosingSelfPaintingLayer(); | 839 PaintLayer* enclosingSelfPaintingLayer(); |
838 | 840 |
839 PaintLayer* enclosingTransformedAncestor() const; | 841 PaintLayer* enclosingTransformedAncestor() const; |
840 LayoutPoint computeOffsetFromTransformedAncestor() const; | 842 LayoutPoint computeOffsetFromTransformedAncestor() const; |
841 | 843 |
842 void didUpdateNeedsCompositedScrolling(); | 844 void didUpdateNeedsCompositedScrolling(); |
843 | 845 |
(...skipping 232 matching lines...) Loading... |
1076 | 1078 |
1077 bool childBackgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const; | 1079 bool childBackgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const; |
1078 | 1080 |
1079 bool shouldBeSelfPaintingLayer() const; | 1081 bool shouldBeSelfPaintingLayer() const; |
1080 | 1082 |
1081 // FIXME: We should only create the stacking node if needed. | 1083 // FIXME: We should only create the stacking node if needed. |
1082 bool requiresStackingNode() const { return true; } | 1084 bool requiresStackingNode() const { return true; } |
1083 void updateStackingNode(); | 1085 void updateStackingNode(); |
1084 | 1086 |
1085 FilterOperations addReflectionToFilterOperations(const ComputedStyle&) const; | 1087 FilterOperations addReflectionToFilterOperations(const ComputedStyle&) const; |
| 1088 FilterEffect* updateFilterEffect() const; |
1086 | 1089 |
1087 // FIXME: We could lazily allocate our ScrollableArea based on style | 1090 // FIXME: We could lazily allocate our ScrollableArea based on style |
1088 // properties ('overflow', ...) but for now, we are always allocating it for | 1091 // properties ('overflow', ...) but for now, we are always allocating it for |
1089 // LayoutBox as it's safer. crbug.com/467721. | 1092 // LayoutBox as it's safer. crbug.com/467721. |
1090 bool requiresScrollableArea() const { return layoutBox(); } | 1093 bool requiresScrollableArea() const { return layoutBox(); } |
1091 void updateScrollableArea(); | 1094 void updateScrollableArea(); |
1092 | 1095 |
1093 void dirtyAncestorChainVisibleDescendantStatus(); | 1096 void dirtyAncestorChainVisibleDescendantStatus(); |
1094 | 1097 |
1095 bool attemptDirectCompositingUpdate(StyleDifference, | 1098 bool attemptDirectCompositingUpdate(StyleDifference, |
1096 const ComputedStyle* oldStyle); | 1099 const ComputedStyle* oldStyle); |
1097 void updateTransform(const ComputedStyle* oldStyle, | 1100 void updateTransform(const ComputedStyle* oldStyle, |
1098 const ComputedStyle& newStyle); | 1101 const ComputedStyle& newStyle); |
1099 | 1102 |
1100 void removeAncestorOverflowLayer(const PaintLayer* removedLayer); | 1103 void removeAncestorOverflowLayer(const PaintLayer* removedLayer); |
1101 | 1104 |
| 1105 void updateOrRemoveFilterClients(); |
| 1106 |
1102 void updatePaginationRecursive(bool needsPaginationUpdate = false); | 1107 void updatePaginationRecursive(bool needsPaginationUpdate = false); |
1103 void clearPaginationRecursive(); | 1108 void clearPaginationRecursive(); |
1104 | 1109 |
1105 void setNeedsRepaintInternal(); | 1110 void setNeedsRepaintInternal(); |
1106 void markCompositingContainerChainForNeedsRepaint(); | 1111 void markCompositingContainerChainForNeedsRepaint(); |
1107 | 1112 |
1108 PaintLayerRareData& ensureRareData() { | 1113 PaintLayerRareData& ensureRareData() { |
1109 if (!m_rareData) | 1114 if (!m_rareData) |
1110 m_rareData = wrapUnique(new PaintLayerRareData); | 1115 m_rareData = wrapUnique(new PaintLayerRareData); |
1111 return *m_rareData; | 1116 return *m_rareData; |
(...skipping 125 matching lines...) Loading... |
1237 | 1242 |
1238 } // namespace blink | 1243 } // namespace blink |
1239 | 1244 |
1240 #ifndef NDEBUG | 1245 #ifndef NDEBUG |
1241 // Outside the WebCore namespace for ease of invocation from gdb. | 1246 // Outside the WebCore namespace for ease of invocation from gdb. |
1242 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); | 1247 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); |
1243 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); | 1248 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); |
1244 #endif | 1249 #endif |
1245 | 1250 |
1246 #endif // Layer_h | 1251 #endif // Layer_h |
OLD | NEW |