OLD | NEW |
---|---|
(Empty) | |
1 #include "config.h" | |
2 #include "cc/rendering_stats.h" | |
3 | |
4 namespace cc { | |
5 | |
6 CCRenderingStats::CCRenderingStats() | |
7 : numAnimationFrames(0) | |
8 , numFramesSentToScreen(0) | |
9 , droppedFrameCount(0) | |
10 , totalPaintTimeInSeconds(0) | |
11 , totalRasterizeTimeInSeconds(0) | |
12 , totalCommitTimeInSeconds(0) | |
13 , totalCommitCount(0) | |
14 , totalPixelsPainted(0) | |
15 , totalPixelsRasterized(0) | |
16 , numImplThreadScrolls(0) | |
17 , numMainThreadScrolls(0) | |
18 { | |
19 } | |
20 } | |
danakj
2012/10/16 17:20:08
style nit: }<space><space>// namespace cc
hartmanng
2012/10/24 21:07:00
Done.
| |
OLD | NEW |