Title: [97210] trunk/Source/WebCore
Revision
97210
Author
[email protected]
Date
2011-10-11 18:27:05 -0700 (Tue, 11 Oct 2011)

Log Message

Qt minimum release build fix attempt after r97163.

* platform/graphics/texmap/TextureMapperNode.cpp:
(WebCore::TextureMapperNode::syncCompositingStateSelf):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97209 => 97210)


--- trunk/Source/WebCore/ChangeLog	2011-10-12 01:18:45 UTC (rev 97209)
+++ trunk/Source/WebCore/ChangeLog	2011-10-12 01:27:05 UTC (rev 97210)
@@ -1,3 +1,10 @@
+2011-10-11  Ryosuke Niwa  <[email protected]>
+
+        Qt minimum release build fix attempt after r97163.
+
+        * platform/graphics/texmap/TextureMapperNode.cpp:
+        (WebCore::TextureMapperNode::syncCompositingStateSelf):
+
 2011-10-11  Oliver Hunt  <[email protected]>
 
         Clang build broken

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperNode.cpp (97209 => 97210)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperNode.cpp	2011-10-12 01:18:45 UTC (rev 97209)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperNode.cpp	2011-10-12 01:27:05 UTC (rev 97210)
@@ -688,7 +688,9 @@
 {
     int changeMask = graphicsLayer->changeMask();
     const TextureMapperNode::ContentData& pendingContent = graphicsLayer->pendingContent();
+#ifdef ENABLE(TILED_BACKING_STORE)
     swapContentsBuffers();
+#endif
     if (changeMask == NoChanges && graphicsLayer->m_animations.isEmpty() && pendingContent.needsDisplayRect.isEmpty() && !pendingContent.needsDisplay)
         return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to