Changeset 113334 in webkit


Ignore:
Timestamp:
Apr 5, 2012, 10:27:16 AM (13 years ago)
Author:
zmo@google.com
Message:

Unreviewed, rolling out r113254.
http://trac.webkit.org/changeset/113254
https://bugs.webkit.org/show_bug.cgi?id=83291

Requested by sievers@chromium.org (Requested by zhenyao on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-04-05

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::canDraw):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Source/WebCore/ChangeLog

    r113332 r113334  
     12012-04-05  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r113254.
     4        http://trac.webkit.org/changeset/113254
     5        https://bugs.webkit.org/show_bug.cgi?id=83291
     6
     7        Requested by sievers@chromium.org (Requested by zhenyao on
     8        #webkit).
     9
     10        * platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
     11        (WebCore::CCLayerTreeHostImpl::canDraw):
     12
    1132012-04-05  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • TabularUnified trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp

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