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

Side by Side Diff: Source/core/rendering/style/RenderStyle.cpp

Issue 240253007: Don't always repaint on zIndex change (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 return StyleDifferenceLayout; 593 return StyleDifferenceLayout;
594 } 594 }
595 595
596 StyleDifference repaintDifference = repaintOnlyDiff(other, changedContextSen sitiveProperties); 596 StyleDifference repaintDifference = repaintOnlyDiff(other, changedContextSen sitiveProperties);
597 ASSERT(repaintDifference <= StyleDifferenceRepaintLayer); 597 ASSERT(repaintDifference <= StyleDifferenceRepaintLayer);
598 return repaintDifference; 598 return repaintDifference;
599 } 599 }
600 600
601 StyleDifference RenderStyle::repaintOnlyDiff(const RenderStyle& other, unsigned& changedContextSensitiveProperties) const 601 StyleDifference RenderStyle::repaintOnlyDiff(const RenderStyle& other, unsigned& changedContextSensitiveProperties) const
602 { 602 {
603 if (position() != StaticPosition && (m_box->zIndex() != other.m_box->zIndex( ) || m_box->hasAutoZIndex() != other.m_box->hasAutoZIndex() 603 if (position() != StaticPosition) {
ojan 2014/04/18 01:46:23 This isn't the fault of your patch, but now that I
Xianzhu 2014/04/18 16:05:41 My understanding about the code is that it forces
ojan 2014/04/18 17:20:03 I think you're right. In either case, that should
604 || visual->clip != other.visual->clip || visual->hasClip != other.visual ->hasClip)) 604 if (m_box->zIndex() != other.m_box->zIndex() || m_box->hasAutoZIndex() ! = other.m_box->hasAutoZIndex())
605 return StyleDifferenceRepaintLayer; 605 changedContextSensitiveProperties |= ContextSensitivePropertyZIndex;
606 if (visual->clip != other.visual->clip || visual->hasClip != other.visua l->hasClip)
607 return StyleDifferenceRepaintLayer;
608 }
606 609
607 if (RuntimeEnabledFeatures::cssCompositingEnabled() && (rareNonInheritedData ->m_effectiveBlendMode != other.rareNonInheritedData->m_effectiveBlendMode 610 if (RuntimeEnabledFeatures::cssCompositingEnabled() && (rareNonInheritedData ->m_effectiveBlendMode != other.rareNonInheritedData->m_effectiveBlendMode
608 || rareNonInheritedData->m_isolation != other.rareNonInheritedData->m_is olation)) 611 || rareNonInheritedData->m_isolation != other.rareNonInheritedData->m_is olation))
609 return StyleDifferenceRepaintLayer; 612 return StyleDifferenceRepaintLayer;
610 613
611 if (rareNonInheritedData->opacity != other.rareNonInheritedData->opacity) { 614 if (rareNonInheritedData->opacity != other.rareNonInheritedData->opacity) {
612 // Don't return early here; instead take note of the type of change, 615 // Don't return early here; instead take note of the type of change,
613 // and deal with it when looking at compositing. 616 // and deal with it when looking at compositing.
614 changedContextSensitiveProperties |= ContextSensitivePropertyOpacity; 617 changedContextSensitiveProperties |= ContextSensitivePropertyOpacity;
615 } 618 }
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 // right 1658 // right
1656 radiiSum = radii.topRight().height() + radii.bottomRight().height(); 1659 radiiSum = radii.topRight().height() + radii.bottomRight().height();
1657 if (radiiSum > rect.height()) 1660 if (radiiSum > rect.height())
1658 factor = std::min(rect.height() / radiiSum, factor); 1661 factor = std::min(rect.height() / radiiSum, factor);
1659 1662
1660 ASSERT(factor <= 1); 1663 ASSERT(factor <= 1);
1661 return factor; 1664 return factor;
1662 } 1665 }
1663 1666
1664 } // namespace WebCore 1667 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/style/RenderStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698