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

Side by Side Diff: Source/core/rendering/LayoutRepainter.cpp

Issue 171843005: Avoid repainting non needs-self-layout container (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Improve the description of the test. Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/LayoutRepainter.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version. 12 * version 2 of the License, or (at your option) any later version.
13 * 13 *
14 * This library is distributed in the hope that it will be useful, 14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details. 17 * Library General Public License for more details.
18 * 18 *
19 * You should have received a copy of the GNU Library General Public License 19 * You should have received a copy of the GNU Library General Public License
20 * along with this library; see the file COPYING.LIB. If not, write to 20 * along with this library; see the file COPYING.LIB. If not, write to
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 * 23 *
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/rendering/LayoutRepainter.h" 27 #include "core/rendering/LayoutRepainter.h"
28 28
29 #include "core/rendering/RenderBlockFlow.h"
30 #include "core/rendering/RenderBox.h"
29 #include "core/rendering/RenderLayer.h" 31 #include "core/rendering/RenderLayer.h"
30 #include "core/rendering/RenderObject.h"
31 32
32 namespace WebCore { 33 namespace WebCore {
33 34
35 static const int gUnsetValue = -1;
36
34 LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint) 37 LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint)
35 : m_object(object) 38 : m_object(object)
36 , m_repaintContainer(0) 39 , m_repaintContainer(0)
37 , m_checkForRepaint(checkForRepaint) 40 , m_checkForRepaint(checkForRepaint)
41 , m_oldLogicalWidth(gUnsetValue)
42 , m_oldLogicalHeight(gUnsetValue)
38 { 43 {
39 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) 44 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled())
40 return; 45 return;
41 46
42 if (m_checkForRepaint) { 47 if (m_checkForRepaint) {
43 m_repaintContainer = m_object.containerForRepaint(); 48 m_repaintContainer = m_object.containerForRepaint();
44 { 49 {
45 // Hits in compositing/video/video-controls-layer-creation.html 50 // Hits in compositing/video/video-controls-layer-creation.html
46 DisableCompositingQueryAsserts disabler; 51 DisableCompositingQueryAsserts disabler;
47 m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContai ner); 52 m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContai ner);
48 } 53 }
49 m_oldOutlineBox = m_object.outlineBoundsForRepaint(m_repaintContainer); 54 m_oldOutlineBox = m_object.outlineBoundsForRepaint(m_repaintContainer);
55 if (m_object.isBox()) {
56 const RenderBox& box = *toRenderBox(&m_object);
57 m_oldLogicalWidth = box.logicalWidth();
58 m_oldLogicalHeight = box.logicalHeight();
59 }
50 } 60 }
51 } 61 }
52 62
53 bool LayoutRepainter::repaintAfterLayout() 63 bool LayoutRepainter::repaintAfterLayout()
54 { 64 {
55 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) 65 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled())
56 return false; 66 return false;
57 67
68 if (!m_checkForRepaint)
69 return false;
70
71 if (canSkipRepaint())
72 return false;
73
58 // Hits in compositing/video/video-controls-layer-creation.html 74 // Hits in compositing/video/video-controls-layer-creation.html
59 DisableCompositingQueryAsserts disabler; 75 DisableCompositingQueryAsserts disabler;
60 76
61 return m_checkForRepaint ? m_object.repaintAfterLayoutIfNeeded(m_repaintCont ainer, m_object.selfNeedsLayout(), m_oldBounds, m_oldOutlineBox) : false; 77 return m_object.repaintAfterLayoutIfNeeded(m_repaintContainer, m_object.self NeedsLayout(), m_oldBounds, m_oldOutlineBox);
78 }
79
80 static bool hasChildrenNeedingRepaintFromContainingBlock(const RenderBlock& cont ainingBlock)
81 {
82 // FIXME: We currently disable this optimization for floats as they need to be
83 // correctly repainted by their (not marked for self-layout) block-flow cont ainer.
84 return containingBlock.containsFloats();
85 }
86
87 bool LayoutRepainter::canSkipRepaint() const
88 {
89 // If we needed layout, our content could have changed so we have to repaint .
90 if (m_object.selfNeedsLayout())
91 return false;
92
93 // FIXME: We disable the optimization for SVG text renderers as they
94 // are the one repainting their inline content.
95 if (m_object.isSVGText())
96 return false;
97
98 if (m_oldLogicalWidth == gUnsetValue) {
99 ASSERT(m_oldLogicalHeight == gUnsetValue);
100 return false;
101 }
102
103 ASSERT(m_oldLogicalWidth != gUnsetValue);
104 ASSERT(m_oldLogicalHeight != gUnsetValue);
105
106 // We don't repaint box containers that are not marked for self-layout and d idn't change size.
107 // This is valid because:
108 // - if their content changed, they would be marked for self-layout.
109 // - their descendant(s) that actually changed should repaint themselves cor rectly.
110 // FIXME: It should be possible to avoid repainting size changes but we have to be careful with
111 // some cases (e.g. gradient or repeated backgrounds).
112 const RenderBox& box = *toRenderBox(&m_object);
113 if (m_oldLogicalWidth != box.logicalWidth() || m_oldLogicalHeight != box.log icalHeight())
114 return false;
115
116 if (!m_object.isRenderBlock())
117 return true;
118
119 return !hasChildrenNeedingRepaintFromContainingBlock(*toRenderBlock(&box));
62 } 120 }
63 121
64 } // namespace WebCore 122 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/LayoutRepainter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698