]> git.cworth.org Git - apitrace/commitdiff
Update docs / scripts for tracedump -> apitrace dump change.
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 30 Oct 2011 14:37:35 +0000 (14:37 +0000)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 30 Oct 2011 14:37:35 +0000 (14:37 +0000)
.gitignore
README.markdown
scripts/tracediff.sh

index c8ac0baaac3c5f494eed1bac57373afbe8f6acbf..5699afc945d2c0e0d2b953402148bf891dad581f 100644 (file)
@@ -43,6 +43,5 @@ glstate_params.cpp
 glxtrace.cpp
 install_manifest.txt
 qapitrace
-tracedump
 traces
 wgltrace.cpp
index 01fb8b66fcde25be18ba09cf041afe4b8f49e890..d35f2c46d9c96dfa702d3bb29339712c4a9dd0f9 100644 (file)
@@ -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
 
index 61292346bbbf4115c08e85e594833fe8e23e5fd3..b3b9220f86c80c1aa3283da2212fa7fb85264eb0 100755 (executable)
 
 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]\+ //' \