Changeset 196055 in webkit


Ignore:
Timestamp:
Feb 3, 2016 12:34:43 AM (8 years ago)
Author:
zandobersek@gmail.com
Message:

[TexMap] Don't use RELEASE_ASSERT in TextureMapperLayer::computeTransformsRecursive()
https://bugs.webkit.org/show_bug.cgi?id=153822

Reviewed by Carlos Garcia Campos.

  • platform/graphics/texmap/TextureMapperLayer.cpp:

(WebCore::TextureMapperLayer::computeTransformsRecursive):
Use ASSERT to check that the m_children members are indeed children
of the current layer, RELEASE_ASSERT probably slipped in unnoticed
at some point.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r196054 r196055  
     12016-02-03  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [TexMap] Don't use RELEASE_ASSERT in TextureMapperLayer::computeTransformsRecursive()
     4        https://bugs.webkit.org/show_bug.cgi?id=153822
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/graphics/texmap/TextureMapperLayer.cpp:
     9        (WebCore::TextureMapperLayer::computeTransformsRecursive):
     10        Use ASSERT to check that the m_children members are indeed children
     11        of the current layer, RELEASE_ASSERT probably slipped in unnoticed
     12        at some point.
     13
    1142016-02-03  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp

    r194496 r196055  
    6666        m_state.replicaLayer->computeTransformsRecursive();
    6767    for (auto* child : m_children) {
    68         RELEASE_ASSERT(child->m_parent == this);
     68        ASSERT(child->m_parent == this);
    6969        child->computeTransformsRecursive();
    7070    }
Note: See TracChangeset for help on using the changeset viewer.