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 c8ac0ba..5699afc 100644 (file)
@@ -43,6 +43,5 @@ glstate_params.cpp
 glxtrace.cpp
 install_manifest.txt
 qapitrace
-tracedump
 traces
 wgltrace.cpp
index 01fb8b6..d35f2c4 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 6129234..b3b9220 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]\+ //' \