X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=retrace%2Fd3dretrace.hpp;h=41cc1c51d4ac5c892a3b3403d3f6f3afd12adc79;hb=3801952b80cd7a7160f6410518f6e3740d461b60;hp=91f235766284474c0cf412ba7fcf2d8099cc714a;hpb=5b130ba1590e5a9853771da249360072baaf71f8;p=apitrace diff --git a/retrace/d3dretrace.hpp b/retrace/d3dretrace.hpp index 91f2357..41cc1c5 100644 --- a/retrace/d3dretrace.hpp +++ b/retrace/d3dretrace.hpp @@ -30,26 +30,67 @@ #include #include "retrace.hpp" - - -struct IDirect3DDevice9; - - -extern const char *g_szD3D9DllName; +#include "d3dstate.hpp" namespace d3dretrace { -extern IDirect3DDevice9 *pLastDirect3DDevice9; - - +extern const retrace::Entry d3d8_callbacks[]; extern const retrace::Entry d3d9_callbacks[]; +extern const retrace::Entry dxgi_callbacks[]; + + +template< class Device > +class D3DDumper : public retrace::Dumper { +public: + Device *pLastDevice; + + D3DDumper() : + pLastDevice(NULL) + {} + + image::Image * + getSnapshot(void) { + if (!pLastDevice) { + return NULL; + } + return d3dstate::getRenderTargetImage(pLastDevice); + } + + bool + dumpState(std::ostream &os) { + if (!pLastDevice) { + return false; + } + d3dstate::dumpDevice(os, pLastDevice); + return true; + } + + inline void + bindDevice(Device *pDevice) { + pLastDevice = pDevice; + retrace::dumper = this; + } + + inline void + unbindDevice(Device *pDevice) { + if (pLastDevice == pDevice) { + pLastDevice = NULL; + } + } +}; HWND createWindow(int width, int height); +void +resizeWindow(HWND hWnd, int width, int height); + +bool +processEvents(void); + } /* namespace d3dretrace */