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

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

Issue 46163008: Revert "Re-land deferred compositing updates with fixed assumptions" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 1750 matching lines...) Expand 10 before | Expand all | Expand 10 after
1761 m_stackingNode->updateIsNormalFlowOnly(); 1761 m_stackingNode->updateIsNormalFlowOnly();
1762 updateSelfPaintingLayer(); 1762 updateSelfPaintingLayer();
1763 1763
1764 if (m_stackingNode->isStackingContainer()) 1764 if (m_stackingNode->isStackingContainer())
1765 m_stackingNode->dirtyZOrderLists(); 1765 m_stackingNode->dirtyZOrderLists();
1766 else 1766 else
1767 m_stackingNode->clearZOrderLists(); 1767 m_stackingNode->clearZOrderLists();
1768 1768
1769 m_stackingNode->dirtyStackingContainerZOrderLists(); 1769 m_stackingNode->dirtyStackingContainerZOrderLists();
1770 1770
1771 compositor()->setNeedsToRecomputeCompositingRequirements(); 1771 compositor()->setShouldReevaluateCompositingAfterLayout();
1772 compositor()->setCompositingLayersNeedRebuild(); 1772 compositor()->setCompositingLayersNeedRebuild();
1773 } 1773 }
1774 1774
1775 void RenderLayer::updateReflectionInfo(const RenderStyle* oldStyle) 1775 void RenderLayer::updateReflectionInfo(const RenderStyle* oldStyle)
1776 { 1776 {
1777 if (renderer()->hasReflection()) { 1777 if (renderer()->hasReflection()) {
1778 if (!m_reflectionInfo) 1778 if (!m_reflectionInfo)
1779 m_reflectionInfo = adoptPtr(new RenderLayerReflectionInfo(toRenderBo x(renderer()))); 1779 m_reflectionInfo = adoptPtr(new RenderLayerReflectionInfo(toRenderBo x(renderer())));
1780 m_reflectionInfo->updateAfterStyleChange(oldStyle); 1780 m_reflectionInfo->updateAfterStyleChange(oldStyle);
1781 } else if (m_reflectionInfo) { 1781 } else if (m_reflectionInfo) {
(...skipping 2412 matching lines...) Expand 10 before | Expand all | Expand 10 after
4194 } 4194 }
4195 } 4195 }
4196 4196
4197 void showLayerTree(const WebCore::RenderObject* renderer) 4197 void showLayerTree(const WebCore::RenderObject* renderer)
4198 { 4198 {
4199 if (!renderer) 4199 if (!renderer)
4200 return; 4200 return;
4201 showLayerTree(renderer->enclosingLayer()); 4201 showLayerTree(renderer->enclosingLayer());
4202 } 4202 }
4203 #endif 4203 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderGeometryMap.cpp ('k') | Source/core/rendering/RenderLayerCompositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698