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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2430313004: Paint collapsed borders of a table as one display item (Closed)
Patch Set: Improve raster performance Created 4 years, 1 month 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 m_has3DTransformedDescendant(false), 138 m_has3DTransformedDescendant(false),
139 m_containsDirtyOverlayScrollbars(false), 139 m_containsDirtyOverlayScrollbars(false),
140 m_needsAncestorDependentCompositingInputsUpdate(true), 140 m_needsAncestorDependentCompositingInputsUpdate(true),
141 m_needsDescendantDependentCompositingInputsUpdate(true), 141 m_needsDescendantDependentCompositingInputsUpdate(true),
142 m_childNeedsCompositingInputsUpdate(true), 142 m_childNeedsCompositingInputsUpdate(true),
143 m_hasCompositingDescendant(false), 143 m_hasCompositingDescendant(false),
144 m_isAllScrollingContentComposited(false), 144 m_isAllScrollingContentComposited(false),
145 m_shouldIsolateCompositedDescendants(false), 145 m_shouldIsolateCompositedDescendants(false),
146 m_lostGroupedMapping(false), 146 m_lostGroupedMapping(false),
147 m_needsRepaint(false), 147 m_needsRepaint(false),
148 m_previousPaintResult(PaintLayerPainter::FullyPainted), 148 m_previousPaintResult(FullyPainted),
149 m_needsPaintPhaseDescendantOutlines(false), 149 m_needsPaintPhaseDescendantOutlines(false),
150 m_previousPaintPhaseDescendantOutlinesWasEmpty(false), 150 m_previousPaintPhaseDescendantOutlinesWasEmpty(false),
151 m_needsPaintPhaseFloat(false), 151 m_needsPaintPhaseFloat(false),
152 m_previousPaintPhaseFloatWasEmpty(false), 152 m_previousPaintPhaseFloatWasEmpty(false),
153 m_needsPaintPhaseDescendantBlockBackgrounds(false), 153 m_needsPaintPhaseDescendantBlockBackgrounds(false),
154 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false), 154 m_previousPaintPhaseDescendantBlockBackgroundsWasEmpty(false),
155 m_hasDescendantWithClipPath(false), 155 m_hasDescendantWithClipPath(false),
156 m_hasNonIsolatedDescendantWithBlendMode(false), 156 m_hasNonIsolatedDescendantWithBlendMode(false),
157 m_hasAncestorWithClipPath(false), 157 m_hasAncestorWithClipPath(false),
158 m_hasRootScrollerAsDescendant(false), 158 m_hasRootScrollerAsDescendant(false),
(...skipping 3064 matching lines...) Expand 10 before | Expand all | Expand 10 after
3223 } 3223 }
3224 3224
3225 void showLayerTree(const blink::LayoutObject* layoutObject) { 3225 void showLayerTree(const blink::LayoutObject* layoutObject) {
3226 if (!layoutObject) { 3226 if (!layoutObject) {
3227 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); 3227 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n");
3228 return; 3228 return;
3229 } 3229 }
3230 showLayerTree(layoutObject->enclosingLayer()); 3230 showLayerTree(layoutObject->enclosingLayer());
3231 } 3231 }
3232 #endif 3232 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698