Changeset 229319 in webkit


Ignore:
Timestamp:
Mar 6, 2018 4:17:36 AM (6 years ago)
Author:
zandobersek@gmail.com
Message:

Unreviewed. Addressing further review feedback for patch landed in r229315.

  • Shared/CoordinatedGraphics/CoordinatedGraphicsScene.cpp:

(WebKit::CoordinatedGraphicsScene::commitSceneState): There's no need for
explicit calls of the clear() method on both containers in the CommitScope
objects, the destructors invoked for these objects from the CommitScope
destructor will have the same effect.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r229318 r229319  
     12018-03-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Unreviewed. Addressing further review feedback for patch landed in r229315.
     4
     5        * Shared/CoordinatedGraphics/CoordinatedGraphicsScene.cpp:
     6        (WebKit::CoordinatedGraphicsScene::commitSceneState): There's no need for
     7        explicit calls of the clear() method on both containers in the CommitScope
     8        objects, the destructors invoked for these objects from the CommitScope
     9        destructor will have the same effect.
     10
    1112018-03-06  Zan Dobersek  <zdobersek@igalia.com>
    212
  • trunk/Source/WebKit/Shared/CoordinatedGraphics/CoordinatedGraphicsScene.cpp

    r229318 r229319  
    541541    for (auto& backingStore : commitScope.backingStoresWithPendingBuffers)
    542542        backingStore->commitTileOperations(*m_textureMapper);
    543 
    544     commitScope.releasedImageBackings.clear();
    545     commitScope.backingStoresWithPendingBuffers.clear();
    546543}
    547544
Note: See TracChangeset for help on using the changeset viewer.