Title: [137502] trunk/Source/WebCore
Revision
137502
Author
[email protected]
Date
2012-12-12 12:42:17 -0800 (Wed, 12 Dec 2012)

Log Message

REGRESSION: r137481 caused a build failure with GTK
https://bugs.webkit.org/show_bug.cgi?id=104826

Unreviewed build fix.


* platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
(WebCore::GraphicsLayerTextureMapper::prepareBackingStore):
    Brought back #if PLATFORM(QT) to surround the dynamic_cast call.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137501 => 137502)


--- trunk/Source/WebCore/ChangeLog	2012-12-12 20:36:31 UTC (rev 137501)
+++ trunk/Source/WebCore/ChangeLog	2012-12-12 20:42:17 UTC (rev 137502)
@@ -1,3 +1,14 @@
+2012-12-12  No'am Rosenthal  <[email protected]>
+
+        REGRESSION: r137481 caused a build failure with GTK
+        https://bugs.webkit.org/show_bug.cgi?id=104826
+
+        Unreviewed build fix.
+
+        * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
+        (WebCore::GraphicsLayerTextureMapper::prepareBackingStore):
+            Brought back #if PLATFORM(QT) to surround the dynamic_cast call.
+
 2012-12-12  Dean Jackson  <[email protected]>
 
         Use CAFilter rather than CIFilter

Modified: trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp (137501 => 137502)


--- trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp	2012-12-12 20:36:31 UTC (rev 137501)
+++ trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp	2012-12-12 20:42:17 UTC (rev 137502)
@@ -466,7 +466,9 @@
     if (!m_backingStore)
         m_backingStore = TextureMapperTiledBackingStore::create();
 
+#if PLATFORM(QT)
     ASSERT(dynamic_cast<TextureMapperTiledBackingStore*>(m_backingStore.get()));
+#endif
     TextureMapperTiledBackingStore* backingStore = static_cast<TextureMapperTiledBackingStore*>(m_backingStore.get());
 
     if (isShowingRepaintCounter())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to