Changes between Version 10 and Version 11 of QtWebKitPerformanceUtilities
- Timestamp:
- Nov 10, 2009, 5:00:34 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QtWebKitPerformanceUtilities
v10 v11 66 66 67 67 The ''memusagestat'' utility was extracted from the glibc sourcecode. It is capable of creating a graph from a trace recorded by the libmemusage.so. 68 {{{ 69 $ MEMUSAGE_OUTPUT=some.result LD_PRELOAD=/lib/libmemusage.so ./some_application 70 $ ./memusagestat -o some.result.png some.result 71 }}} 72 73 ==== Recording paint traces ==== 74 75 In Qt 4.6 a new graphicssystem called trace was introduced. It allows to record all drawing operations into a trace buffer, store it to disk. Later it can be replayed with the qttracereplay utility of Qt. 76 77 {{{ 78 $ ./my-qt-app -graphicssystem trace 79 $ qttracereplay the_trace_file 80 }}} 68 81 69 82 === Test Applications ===