X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=wrappers%2Fd3d10trace.py;h=adb5dae207c94a0d6eef6554b67585ae0f6eee29;hb=1f94577d8c4b1c1a2a1a8f3dceb0daac02dd72b7;hp=1d6576977af426a9fe2adf429a332952491e309b;hpb=452d3256a3ba7f249222ef857d69c8caaaa753f3;p=apitrace diff --git a/wrappers/d3d10trace.py b/wrappers/d3d10trace.py index 1d65769..adb5dae 100644 --- a/wrappers/d3d10trace.py +++ b/wrappers/d3d10trace.py @@ -24,7 +24,7 @@ ##########################################################################/ -from dlltrace import DllTracer +from d3dcommontrace import D3DCommonTracer from specs.d3d10misc import d3d10 @@ -34,13 +34,9 @@ if __name__ == '__main__': print '#include "trace_writer_local.hpp"' print '#include "os.hpp"' print - print '#include ' - print '#include ' + print '#include "d3d10imports.hpp"' + print '#include "d3d10shader.hpp"' + print '#include "d3d10size.hpp"' print - print '#include "compat.h"' - print - print '#include ' - print '#include ' - print - tracer = DllTracer('d3d10.dll') - tracer.trace_api(d3d10) + tracer = D3DCommonTracer('d3d10.dll') + tracer.traceApi(d3d10)