Title: [196055] trunk/Source/WebCore
Revision
196055
Author
[email protected]
Date
2016-02-03 00:34:43 -0800 (Wed, 03 Feb 2016)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (196054 => 196055)


--- trunk/Source/WebCore/ChangeLog	2016-02-03 08:33:31 UTC (rev 196054)
+++ trunk/Source/WebCore/ChangeLog	2016-02-03 08:34:43 UTC (rev 196055)
@@ -1,5 +1,18 @@
 2016-02-03  Zan Dobersek  <[email protected]>
 
+        [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.
+
+2016-02-03  Zan Dobersek  <[email protected]>
+
         PlatformPathCairo: Lazily allocate the path surface
         https://bugs.webkit.org/show_bug.cgi?id=153821
 

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp (196054 => 196055)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp	2016-02-03 08:33:31 UTC (rev 196054)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.cpp	2016-02-03 08:34:43 UTC (rev 196055)
@@ -65,7 +65,7 @@
     if (m_state.replicaLayer)
         m_state.replicaLayer->computeTransformsRecursive();
     for (auto* child : m_children) {
-        RELEASE_ASSERT(child->m_parent == this);
+        ASSERT(child->m_parent == this);
         child->computeTransformsRecursive();
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to