From: José Fonseca Date: Sun, 30 Oct 2011 14:37:35 +0000 (+0000) Subject: Update docs / scripts for tracedump -> apitrace dump change. X-Git-Url: https://git.cworth.org/git?p=apitrace;a=commitdiff_plain;h=7384bc41a6bac9c7216d44c95d026dc5359e4a5d Update docs / scripts for tracedump -> apitrace dump change. --- diff --git a/.gitignore b/.gitignore index c8ac0ba..5699afc 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,5 @@ glstate_params.cpp glxtrace.cpp install_manifest.txt qapitrace -tracedump traces wgltrace.cpp diff --git a/README.markdown b/README.markdown index 01fb8b6..d35f2c4 100644 --- a/README.markdown +++ b/README.markdown @@ -29,7 +29,7 @@ directory. You can specify the written trace filename by setting the View the trace with - /path/to/tracedump --color application.trace | less -R + /path/to/apitrace dump --color application.trace | less -R Replay the trace with @@ -88,7 +88,7 @@ Windows * View the trace with - \path\to\tracedump application.trace + \path\to\apitrace dump application.trace * Replay the trace with diff --git a/scripts/tracediff.sh b/scripts/tracediff.sh index 6129234..b3b9220 100755 --- a/scripts/tracediff.sh +++ b/scripts/tracediff.sh @@ -26,12 +26,12 @@ set -e -TRACEDUMP=${TRACEDUMP:-`dirname "$0"`/../tracedump} +APITRACE=${APITRACE:-`dirname "$0"`/../apitrace} -$TRACEDUMP +$APITRACE dump stripdump () { - $TRACEDUMP --color=never "$1" \ + $APITRACE dump --color=never "$1" \ | sed \ -e 's/\r$//g' \ -e 's/^[0-9]\+ //' \