summaryrefslogtreecommitdiffstats
path: root/tools/qttracereplay/qttracereplay.pro
Commit message (Collapse)AuthorAgeFilesLines
* Remove build_all when target is same for debug and releaseSamuli Piippo2012-04-301-0/+4
| | | | | | | | | | | Change build rules for projects where both debug and release target are the same file. For these, it makes no sense building both targets, as they overwrite each other. Now build only release target, when build_all is used. Change-Id: Iffd1076028b1cc91e8151c346bf4761772dafe65 Reviewed-by: Simo Fält <simo.falt@nokia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* Fixed up qttracereplay and trace graphicsystem a bit.Gunnar Sletta2009-11-091-0/+2
| | | | | | | | | | | - Added "qttrace" to binary file, making it possible to do a sanity verification of the input file in qttracereplay - Sanity check input binary file, both for existance and for content in qttracereplay - Console app on windows and mac - Added helpful output for -h and --help command line options Reviewed-by: Samuel
* Added trace graphics system for painting performance profiling.Samuel Rødal2009-09-031-0/+13
When running an application with graphics system trace everything that gets painted to the window surface is proxied through a QPaintBuffer, which is then both streamed to a trace file and replayed on a raster window surface. The trace file can then be replayed with tools/qttracereplay to measure pure painting performance. Reviewed-by: Gunnar Sletta