Title: [113254] trunk/Source/WebCore
Revision
113254
Author
z...@google.com
Date
2012-04-04 15:53:02 -0700 (Wed, 04 Apr 2012)

Log Message

2012-04-04  Zhenyao Mo  <z...@google.com>

        Unreviewed, GPU bots build fix.

        Commited on behalf of siev...@chromium.org.

        * platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
        (WebCore::CCLayerTreeHostImpl::canDraw):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113253 => 113254)


--- trunk/Source/WebCore/ChangeLog	2012-04-04 22:42:29 UTC (rev 113253)
+++ trunk/Source/WebCore/ChangeLog	2012-04-04 22:53:02 UTC (rev 113254)
@@ -1,3 +1,12 @@
+2012-04-04  Zhenyao Mo  <z...@google.com>
+
+        Unreviewed, GPU bots build fix.
+
+        Commited on behalf of siev...@chromium.org.
+
+        * platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
+        (WebCore::CCLayerTreeHostImpl::canDraw):
+
 2012-04-04  Abhishek Arya  <infe...@chromium.org>
 
         Add helpers to create anonymous table parts.

Modified: trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp (113253 => 113254)


--- trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp	2012-04-04 22:42:29 UTC (rev 113253)
+++ trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp	2012-04-04 22:53:02 UTC (rev 113254)
@@ -142,7 +142,9 @@
 
 bool CCLayerTreeHostImpl::canDraw()
 {
-    if (!rootLayer() || rootLayer()->bounds().isEmpty())
+    // FIXME: Reenable after figuring out why this causes the gpu_test
+    // ThreadedCompositorTest.ThreadedCompositor to fail.
+    if (!rootLayer())  // || rootLayer()->bounds().isEmpty())
         return false;
     if (viewportSize().isEmpty())
         return false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to