From: José Fonseca Date: Fri, 4 May 2012 14:10:17 +0000 (+0100) Subject: Don't use D3D9D by default. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=5e872b19e0e1284dd3d6a6de6fbd1df9c1fbadb9;p=apitrace Don't use D3D9D by default. Too buggy. --- diff --git a/retrace/d3dretrace_main.cpp b/retrace/d3dretrace_main.cpp index 6035e77..4dba299 100644 --- a/retrace/d3dretrace_main.cpp +++ b/retrace/d3dretrace_main.cpp @@ -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"; + } } }