]> git.cworth.org Git - apitrace/blobdiff - retrace/d3dretrace_main.cpp
Don't use D3D9D by default.
[apitrace] / retrace / d3dretrace_main.cpp
index 6035e77b544bd221f201de3fabefbabca240082c..4dba29942f9fb5916ac81a13f9dbb9fe77c64ae0 100644 (file)
@@ -40,7 +40,13 @@ d3dretrace::pLastDirect3DDevice9 = NULL;
 void
 retrace::setUp(void) {
     if (retrace::debug) {
-        g_szD3D9DllName = "d3d9d.dll";
+        /* 
+         * XXX: D3D9D only works for simple things, it often introduces errors
+         * on complex traces, or traces which use unofficial D3D9 features.
+         */
+        if (0) {
+            g_szD3D9DllName = "d3d9d.dll";
+        }
     }
 }