Changeset 127840 in webkit
- Timestamp:
- Sep 7, 2012, 1:08:37 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r127838 r127840 1 2012-09-07 Tim Horton <timothy_horton@apple.com> 2 3 Scrolling performance logging should use WTFLogAlways instead of printf 4 https://bugs.webkit.org/show_bug.cgi?id=96080 5 6 Reviewed by Dan Bernstein. 7 8 Use WTF logging facilities instead of printf() for scrolling performance logging. 9 10 * page/scrolling/mac/ScrollingTreeNodeMac.mm: 11 (WebCore::ScrollingTreeNodeMac::logExposedUnfilledArea): 12 * platform/graphics/ca/mac/WebTileLayer.mm: 13 (-[WebTileLayer logFilledFreshTile]): 14 1 15 2012-09-07 Luke Macpherson <macpherson@chromium.org> 2 16 -
trunk/Source/WebCore/page/scrolling/mac/ScrollingTreeNodeMac.mm
r127837 r127840 339 339 340 340 if (unfilledArea) 341 printf("SCROLLING: Exposed tileless area. Time: %f Unfilled Pixels: %u\n", WTF::monotonicallyIncreasingTime(), unfilledArea);341 WTFLogAlways("SCROLLING: Exposed tileless area. Time: %f Unfilled Pixels: %u\n", WTF::monotonicallyIncreasingTime(), unfilledArea); 342 342 } 343 343 -
trunk/Source/WebCore/platform/graphics/ca/mac/WebTileLayer.mm
r125156 r127840 78 78 79 79 if ([self repaintCount] == 1 && !visiblePart.isEmpty()) 80 printf("SCROLLING: Filled visible fresh tile. Time: %f Unfilled Pixels: %u\n", WTF::monotonicallyIncreasingTime(), _tileCache->blankPixelCount());80 WTFLogAlways("SCROLLING: Filled visible fresh tile. Time: %f Unfilled Pixels: %u\n", WTF::monotonicallyIncreasingTime(), _tileCache->blankPixelCount()); 81 81 } 82 82
Note:
See TracChangeset
for help on using the changeset viewer.