Rename to apitrace.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 13 Apr 2009 15:23:21 +0000 (16:23 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Mon, 13 Apr 2009 15:23:21 +0000 (16:23 +0100)
Since we support more than d3d.

README
SConstruct
apitrace.css [moved from d3dtrace.css with 100% similarity]
apitrace.xsl [moved from d3dtrace.xsl with 97% similarity]
log.cpp

diff --git a/README b/README
index f061237..f169706 100644 (file)
--- a/README
+++ b/README
@@ -66,7 +66,7 @@ See the scons manpage for more info.
 
 = Usage =
 
-* Copy d3d8.dll/d3d9.dll, d3dtrace.xsl, d3dtrace.css to the directory with the application you want to trace.
+* Copy d3d8.dll/d3d9.dll, apitrace.xsl, apitrace.css to the directory with the application you want to trace.
 * Run the application.
 * Open the output XML file with Firefox or Internet Explorer to view the log.
 * For long XML files is better to use xml2txt.py script.
index 84564c4..a615373 100644 (file)
@@ -162,21 +162,21 @@ env.Default(opengl32)
 env.Tool('packaging')
 
 zip = env.Package(
-    NAME           = 'd3dtrace',
-    VERSION        = '0.2',
+    NAME           = 'apitrace',
+    VERSION        = '0.3',
     PACKAGEVERSION = 0,
     PACKAGETYPE    = 'zip',
     LICENSE        = 'lgpl',
-    SUMMARY        = 'Tool to trace Direct3D API calls from applications.',
-    SOURCE_URL     = 'http://cgit.freedesktop.org/~jrfonseca/d3dtrace/',
+    SUMMARY        = 'Tool to trace Direct3D & OpenGL API calls from applications.',
+    SOURCE_URL     = 'http://cgit.freedesktop.org/~jrfonseca/apitrace/',
     source = [
         'README',
         'COPYING',
         'COPYING.LESSER',
         'd3d8.dll',
         'd3d9.dll',
-        'd3dtrace.xsl',
-        'd3dtrace.css',
+        'apitrace.xsl',
+        'apitrace.css',
         'xml2txt.py',
     ],
 )
similarity index 100%
rename from d3dtrace.css
rename to apitrace.css
similarity index 97%
rename from d3dtrace.xsl
rename to apitrace.xsl
index 3a786df..1e0b631 100644 (file)
@@ -29,7 +29,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
                <html>
                        <head>
                                <title>D3D Trace</title>
-                               <link rel="stylesheet" type="text/css" href="d3dtrace.css"/>
+                               <link rel="stylesheet" type="text/css" href="apitrace.css"/>
                        </head>
                        <body>
                                <ul class="calls">
diff --git a/log.cpp b/log.cpp
index 5e44bc3..bab893f 100644 (file)
--- a/log.cpp
+++ b/log.cpp
@@ -187,7 +187,7 @@ void Open(const char *name) {
     _Open(name, "xml");
     Write("<?xml version='1.0' encoding='UTF-8'?>");
     NewLine();
-    Write("<?xml-stylesheet type='text/xsl' href='d3dtrace.xsl'?>");
+    Write("<?xml-stylesheet type='text/xsl' href='apitrace.xsl'?>");
     NewLine();
     BeginTag("trace");
     NewLine();