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

Side by Side Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.h

Issue 1416053003: Let synchronized painting generate correct paint invalidation rects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: For landing Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 GraphicsLayer* childTransformLayer() const { return m_childTransformLayer.ge t(); } 116 GraphicsLayer* childTransformLayer() const { return m_childTransformLayer.ge t(); }
117 117
118 GraphicsLayer* squashingContainmentLayer() const { return m_squashingContain mentLayer.get(); } 118 GraphicsLayer* squashingContainmentLayer() const { return m_squashingContain mentLayer.get(); }
119 GraphicsLayer* squashingLayer() const { return m_squashingLayer.get(); } 119 GraphicsLayer* squashingLayer() const { return m_squashingLayer.get(); }
120 120
121 void setSquashingContentsNeedDisplay(); 121 void setSquashingContentsNeedDisplay();
122 void setContentsNeedDisplay(); 122 void setContentsNeedDisplay();
123 // LayoutRect is in the coordinate space of the layer's layout object. 123 // LayoutRect is in the coordinate space of the layer's layout object.
124 void setContentsNeedDisplayInRect(const LayoutRect&, PaintInvalidationReason ); 124 void setContentsNeedDisplayInRect(const LayoutRect&, PaintInvalidationReason );
125 125
126 void invalidateDisplayItemClient(const DisplayItemClientWrapper&, PaintInval idationReason, const LayoutRect& previousPaintInvalidationRect, const LayoutRect & newPaintInvalidationRect); 126 // If |visualRect| is not nullptr, it contains all pixels that might be pain ted by the display item client,
127 void invalidateDisplayItemClientOnScrollingContentsLayer(const DisplayItemCl ientWrapper&, PaintInvalidationReason, const LayoutRect& previousPaintInvalidati onRect, const LayoutRect& newPaintInvalidationRect); 127 // in coordinate space of the layer's layout object.
128 // |visualRect| can be nullptr if we know it's unchanged and PaintController has cached the previous value.
129 void invalidateDisplayItemClient(const DisplayItemClientWrapper&, PaintInval idationReason, const LayoutRect* visualRect);
130 void invalidateDisplayItemClientOnScrollingContentsLayer(const DisplayItemCl ientWrapper&, PaintInvalidationReason, const LayoutRect* visualRect);
128 131
129 // Notification from the layoutObject that its content changed. 132 // Notification from the layoutObject that its content changed.
130 void contentChanged(ContentChangeType); 133 void contentChanged(ContentChangeType);
131 134
132 LayoutRect compositedBounds() const { return m_compositedBounds; } 135 LayoutRect compositedBounds() const { return m_compositedBounds; }
133 IntRect pixelSnappedCompositedBounds() const; 136 IntRect pixelSnappedCompositedBounds() const;
134 137
135 void positionOverflowControlsLayers(); 138 void positionOverflowControlsLayers();
136 139
137 // Returns true if the assignment actually changed the assigned squashing la yer. 140 // Returns true if the assignment actually changed the assigned squashing la yer.
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 436
434 unsigned m_backgroundLayerPaintsFixedRootBackground : 1; 437 unsigned m_backgroundLayerPaintsFixedRootBackground : 1;
435 unsigned m_scrollingContentsAreEmpty : 1; 438 unsigned m_scrollingContentsAreEmpty : 1;
436 439
437 friend class CompositedLayerMappingTest; 440 friend class CompositedLayerMappingTest;
438 }; 441 };
439 442
440 } // namespace blink 443 } // namespace blink
441 444
442 #endif // CompositedLayerMapping_h 445 #endif // CompositedLayerMapping_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698