Changeset 113254 in webkit


Ignore:
Timestamp:
Apr 4, 2012, 3:53:02 PM (13 years ago)
Author:
zmo@google.com
Message:

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

Unreviewed, GPU bots build fix.

Commited on behalf of sievers@chromium.org.

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp: (WebCore::CCLayerTreeHostImpl::canDraw):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r113252 r113254  
     12012-04-04  Zhenyao Mo  <zmo@google.com>
     2
     3        Unreviewed, GPU bots build fix.
     4
     5        Commited on behalf of sievers@chromium.org.
     6
     7        * platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
     8        (WebCore::CCLayerTreeHostImpl::canDraw):
     9
    1102012-04-04  Abhishek Arya  <inferno@chromium.org>
    211
  • trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp

    r113248 r113254  
    143143bool CCLayerTreeHostImpl::canDraw()
    144144{
    145     if (!rootLayer() || rootLayer()->bounds().isEmpty())
     145    // FIXME: Reenable after figuring out why this causes the gpu_test
     146    // ThreadedCompositorTest.ThreadedCompositor to fail.
     147    if (!rootLayer())  // || rootLayer()->bounds().isEmpty())
    146148        return false;
    147149    if (viewportSize().isEmpty())
Note: See TracChangeset for help on using the changeset viewer.