X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=wrappers%2Fd3d9trace.py;h=f3236e729b64d34c5e400aeb7855a894f49ffdbe;hb=48c661ea6c0f2bd9b76a3385cd946b7d07bc9b5f;hp=17ebe197d872a17b5dcf779dbcc0b123676861af;hpb=12ac428c2f5e004ac6fec9149f83feaf85a29e49;p=apitrace diff --git a/wrappers/d3d9trace.py b/wrappers/d3d9trace.py index 17ebe19..f3236e7 100644 --- a/wrappers/d3d9trace.py +++ b/wrappers/d3d9trace.py @@ -25,6 +25,7 @@ from dlltrace import DllTracer +from specs.stdapi import API from specs.d3d9 import d3d9, D3DSHADER9 import specs.d3d9dxva2 @@ -43,26 +44,21 @@ class D3D9Tracer(DllTracer): def enumWrapperInterfaceVariables(self, interface): variables = DllTracer.enumWrapperInterfaceVariables(self, interface) + # Add additional members to track locks if interface.getMethodByName('Lock') is not None or \ interface.getMethodByName('LockRect') is not None or \ interface.getMethodByName('LockBox') is not None: variables += [ - ('size_t', '_LockedSize', '0'), + ('size_t', '_MappedSize', '0'), ('VOID *', 'm_pbData', '0'), ] return variables def implementWrapperInterfaceMethodBody(self, interface, base, method): - if method.name == 'DecodeExecute': - print r' _NumCompBuffers = pExecuteParams->NumCompBuffers;' - - if method.name == 'VideoProcessBlt': - print r' _NumSrcSurfaces = pData->NumSrcSurfaces;' - if method.name in ('Unlock', 'UnlockRect', 'UnlockBox'): - print ' if (_LockedSize && m_pbData) {' - self.emit_memcpy('(LPBYTE)m_pbData', '(LPBYTE)m_pbData', '_LockedSize') + print ' if (_MappedSize && m_pbData) {' + self.emit_memcpy('(LPBYTE)m_pbData', '(LPBYTE)m_pbData', '_MappedSize') print ' }' DllTracer.implementWrapperInterfaceMethodBody(self, interface, base, method) @@ -70,10 +66,10 @@ class D3D9Tracer(DllTracer): if method.name in ('Lock', 'LockRect', 'LockBox'): # FIXME: handle recursive locks print ' if (SUCCEEDED(_result) && !(Flags & D3DLOCK_READONLY)) {' - print ' _getLockInfo(_this, %s, m_pbData, _LockedSize);' % ', '.join(method.argNames()[:-1]) + print ' _getMapInfo(_this, %s, m_pbData, _MappedSize);' % ', '.join(method.argNames()[:-1]) print ' } else {' print ' m_pbData = NULL;' - print ' _LockedSize = 0;' + print ' _MappedSize = 0;' print ' }' @@ -84,24 +80,12 @@ if __name__ == '__main__': print '#include "os.hpp"' print print '#include "d3d9imports.hpp"' - print '#include "d3dsize.hpp"' + print '#include "d3d9size.hpp"' print '#include "d3d9shader.hpp"' print '#include "dxvaint.h"' print - print ''' -static inline size_t -_declCount(const D3DVERTEXELEMENT9 *pVertexElements) { - size_t count = 0; - if (pVertexElements) { - while (pVertexElements[count++].Stream != 0xff) - ; - } - return count; -} - -static UINT _NumCompBuffers = 0; /* XXX */ -static UINT _NumSrcSurfaces = 0; /* XXX */ -''' - tracer = D3D9Tracer('d3d9.dll') - tracer.traceApi(d3d9) + api = API() + api.addModule(d3d9) + tracer = D3D9Tracer() + tracer.traceApi(api)