⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249047 in webkit


Ignore:
Timestamp:
Aug 23, 2019, 9:53:02 AM (7 years ago)
Author:
Simon Fraser
Message:

Remove unnecessary call to enclosingClippingScopes()
https://bugs.webkit.org/show_bug.cgi?id=201063

Reviewed by Zalan Bujtas.

This line of code did nothing, and was left in by mistake. Remove it.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::updateOverlapMap const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249045 r249047  
     12019-08-23  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Remove unnecessary call to enclosingClippingScopes()
     4        https://bugs.webkit.org/show_bug.cgi?id=201063
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        This line of code did nothing, and was left in by mistake. Remove it.
     9
     10        * rendering/RenderLayerCompositor.cpp:
     11        (WebCore::RenderLayerCompositor::updateOverlapMap const):
     12
    1132019-08-23  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp

    r248846 r249047  
    19281928{
    19291929    if (addLayerToOverlap) {
    1930         auto clippingScopes = enclosingClippingScopes(layer, rootRenderLayer());
    19311930        addToOverlapMap(overlapMap, layer, layerExtent);
    19321931        LOG_WITH_STREAM(CompositingOverlap, stream << "layer " << &layer << " contributes to overlap, added to map " << overlapMap);
Note: See TracChangeset for help on using the changeset viewer.