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

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

Issue 204843002: Reduce invalidation on children-needs-layout containers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated patch after Levi's comment + the bots failures 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
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/RenderBlock.h"
29 #include "core/rendering/RenderLayer.h" 30 #include "core/rendering/RenderLayer.h"
30 #include "core/rendering/RenderObject.h" 31 #include "core/rendering/RenderObject.h"
31 32
32 namespace WebCore { 33 namespace WebCore {
33 34
34 LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint) 35 LayoutRepainter::LayoutRepainter(RenderObject& object, bool checkForRepaint)
35 : m_object(object) 36 : m_object(object)
36 , m_repaintContainer(0) 37 , m_repaintContainer(0)
37 , m_checkForRepaint(checkForRepaint) 38 , m_checkForRepaint(checkForRepaint)
38 { 39 {
39 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) 40 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled())
40 return; 41 return;
41 42
42 if (m_checkForRepaint) { 43 if (m_checkForRepaint) {
43 m_repaintContainer = m_object.containerForRepaint(); 44 m_repaintContainer = m_object.containerForRepaint();
44 { 45 {
45 // Hits in compositing/video/video-controls-layer-creation.html 46 // Hits in compositing/video/video-controls-layer-creation.html
46 DisableCompositingQueryAsserts disabler; 47 DisableCompositingQueryAsserts disabler;
47 m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContai ner); 48 m_oldBounds = m_object.clippedOverflowRectForRepaint(m_repaintContai ner);
48 } 49 }
49 m_oldOutlineBox = m_object.outlineBoundsForRepaint(m_repaintContainer); 50 m_oldOutlineBox = m_object.outlineBoundsForRepaint(m_repaintContainer);
50 } 51 }
51 } 52 }
52 53
53 bool LayoutRepainter::repaintAfterLayout() 54 bool LayoutRepainter::repaintAfterLayout()
54 { 55 {
55 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) 56 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled())
56 return false; 57 return false;
57 58
59 if (!m_object.needsLayoutBecauseOfChildren()) {
60 // FIXME: We disable the optimization for SVG renderers for now.
leviw_travelin_and_unemployed 2014/03/20 21:12:13 Looking at this and seeing a FIXME about an optimi
Julien - ping for review 2014/03/20 22:25:33 Done, named it skipInvalidationWhenLayingOutChildr
61 // RenderBlock with line boxes are responsible to repaint them so we can 't ignore them.
62 bool rendererDisallowOptimization = m_object.isSVG() || (m_object.isRend erBlock() && toRenderBlock(&m_object)->firstLineBox());
63 bool hasEffectVisualOverflow = m_object.style()->hasVisualOverflowingEff ect() || m_object.style()->hasOutline();
64 if (!rendererDisallowOptimization && !hasEffectVisualOverflow && !m_obje ct.style()->hasBorder() && !m_object.style()->hasBackground())
65 return false;
66 }
67
58 // Hits in compositing/video/video-controls-layer-creation.html 68 // Hits in compositing/video/video-controls-layer-creation.html
59 DisableCompositingQueryAsserts disabler; 69 DisableCompositingQueryAsserts disabler;
60 70
61 return m_checkForRepaint ? m_object.repaintAfterLayoutIfNeeded(m_repaintCont ainer, m_object.selfNeedsLayout(), m_oldBounds, m_oldOutlineBox) : false; 71 return m_checkForRepaint ? m_object.repaintAfterLayoutIfNeeded(m_repaintCont ainer, m_object.selfNeedsLayout(), m_oldBounds, m_oldOutlineBox) : false;
62 } 72 }
63 73
64 } // namespace WebCore 74 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698