Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(779)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2732573003: Skip paint property update and visual rect update if no geometry change (Closed)
Patch Set: - Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index 52203ef7d78deed99d9c2e611e0d0a1adbd08440..b4922700c450e776f80e14db4fc291469f64099e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1643,6 +1643,8 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
}
void setShouldDoFullPaintInvalidation(
PaintInvalidationReason = PaintInvalidationFull);
+ void setShouldDoFullPaintInvalidationWithoutGeometryChange(
pdr. 2017/03/10 06:21:39 It looks like this change is basically recognizing
Xianzhu 2017/03/10 17:43:05 Yes.
+ PaintInvalidationReason = PaintInvalidationFull);
void clearShouldDoFullPaintInvalidation() {
m_bitfields.setFullPaintInvalidationReason(PaintInvalidationNone);
}
@@ -1653,12 +1655,17 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
return m_bitfields.mayNeedPaintInvalidation();
}
void setMayNeedPaintInvalidation();
+ void setMayNeedPaintInvalidationWithoutGeometryChange();
bool mayNeedPaintInvalidationSubtree() const {
return m_bitfields.mayNeedPaintInvalidationSubtree();
}
void setMayNeedPaintInvalidationSubtree();
+ bool needsPaintOffsetAndVisualRectUpdate() const {
+ return m_bitfields.needsPaintOffsetAndVisualRectUpdate();
+ }
+
bool mayNeedPaintInvalidationAnimatedBackgroundImage() const {
return m_bitfields.mayNeedPaintInvalidationAnimatedBackgroundImage();
}
@@ -1677,9 +1684,7 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
bool shouldCheckForPaintInvalidationRegardlessOfPaintInvalidationState()
const {
- return mayNeedPaintInvalidation() || shouldDoFullPaintInvalidation() ||
- shouldInvalidateSelection() ||
- m_bitfields.childShouldCheckForPaintInvalidation();
+ return mayNeedPaintInvalidation() || shouldDoFullPaintInvalidation();
}
virtual LayoutRect viewRect() const;
@@ -2016,7 +2021,8 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
#if DCHECK_IS_ON()
virtual bool paintInvalidationStateIsDirty() const {
return backgroundChangedSinceLastPaintInvalidation() ||
- shouldCheckForPaintInvalidationRegardlessOfPaintInvalidationState();
+ shouldCheckForPaintInvalidationRegardlessOfPaintInvalidationState() ||
+ shouldInvalidateSelection() || needsPaintOffsetAndVisualRectUpdate();
}
#endif
@@ -2101,6 +2107,7 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
inline void markAncestorsForOverflowRecalcIfNeeded();
inline void markAncestorsForPaintInvalidation();
+ inline void setNeedsPaintOffsetAndVisualRectUpdate();
inline void invalidateContainerPreferredLogicalWidths();
@@ -2197,10 +2204,10 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
m_selfNeedsOverflowRecalcAfterStyleChange(false),
m_childNeedsOverflowRecalcAfterStyleChange(false),
m_preferredLogicalWidthsDirty(false),
- m_childShouldCheckForPaintInvalidation(false),
m_mayNeedPaintInvalidation(false),
m_mayNeedPaintInvalidationSubtree(false),
m_mayNeedPaintInvalidationAnimatedBackgroundImage(false),
+ m_needsPaintOffsetAndVisualRectUpdate(false),
m_shouldInvalidateSelection(false),
m_floating(false),
m_isAnonymous(!node),
@@ -2299,13 +2306,13 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
ADD_BOOLEAN_BITFIELD(preferredLogicalWidthsDirty,
PreferredLogicalWidthsDirty);
- ADD_BOOLEAN_BITFIELD(childShouldCheckForPaintInvalidation,
- ChildShouldCheckForPaintInvalidation);
ADD_BOOLEAN_BITFIELD(mayNeedPaintInvalidation, MayNeedPaintInvalidation);
ADD_BOOLEAN_BITFIELD(mayNeedPaintInvalidationSubtree,
MayNeedPaintInvalidationSubtree);
ADD_BOOLEAN_BITFIELD(mayNeedPaintInvalidationAnimatedBackgroundImage,
MayNeedPaintInvalidationAnimatedBackgroundImage);
+ ADD_BOOLEAN_BITFIELD(needsPaintOffsetAndVisualRectUpdate,
+ NeedsPaintOffsetAndVisualRectUpdate);
ADD_BOOLEAN_BITFIELD(shouldInvalidateSelection, ShouldInvalidateSelection);
// This boolean is the cached value of 'float'

Powered by Google App Engine
This is Rietveld 408576698