Changeset 113334 in webkit
- Timestamp:
- Apr 5, 2012, 10:27:16 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r113332 r113334 1 2012-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 1 13 2012-04-05 Sheriff Bot <webkit.review.bot@gmail.com> 2 14 -
TabularUnified trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp ¶
r113332 r113334 143 143 bool CCLayerTreeHostImpl::canDraw() 144 144 { 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()) 148 146 return false; 149 147 if (viewportSize().isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.