diff options
| author | Jason Maskell <[email protected]> | 2016-05-25 16:02:23 +0200 |
|---|---|---|
| committer | Jason Maskell <[email protected]> | 2016-05-25 16:02:23 +0200 |
| commit | 69f624cfc22c361a8162f57df4a71e4324805717 (patch) | |
| tree | 245e0e5ebcb120fc573eb44d82755c1456e0d519 /src/GFX_Timer_impl.h | |
| parent | Added OpenGL sample - compiles and runs but doesn't work. (diff) | |
| download | waveworks_archive-69f624cfc22c361a8162f57df4a71e4324805717.tar.xz waveworks_archive-69f624cfc22c361a8162f57df4a71e4324805717.zip | |
Excised D3D9 and 10 support from library.
Diffstat (limited to 'src/GFX_Timer_impl.h')
| -rw-r--r-- | src/GFX_Timer_impl.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/GFX_Timer_impl.h b/src/GFX_Timer_impl.h index 0d33a5f..eeb0093 100644 --- a/src/GFX_Timer_impl.h +++ b/src/GFX_Timer_impl.h @@ -39,8 +39,6 @@ public: NVWaveWorks_GFX_Timer_Impl(); ~NVWaveWorks_GFX_Timer_Impl(); - HRESULT initD3D9(IDirect3DDevice9* pD3DDevice); - HRESULT initD3D10(ID3D10Device* pD3DDevice); HRESULT initD3D11(ID3D11Device* pD3DDevice); HRESULT initGnm(); HRESULT initGL2(void* pGLContext); @@ -79,20 +77,6 @@ private: // D3D API handling nv_water_d3d_api m_d3dAPI; -#if WAVEWORKS_ENABLE_D3D9 - struct D3D9Objects - { - IDirect3DDevice9* m_pd3d9Device; - }; -#endif - -#if WAVEWORKS_ENABLE_D3D10 - struct D3D10Objects - { - ID3D10Device* m_pd3d10Device; - }; -#endif - #if WAVEWORKS_ENABLE_D3D11 struct D3D11Objects { @@ -113,12 +97,6 @@ private: #endif union { -#if WAVEWORKS_ENABLE_D3D9 - D3D9Objects _9; -#endif -#if WAVEWORKS_ENABLE_D3D10 - D3D10Objects _10; -#endif #if WAVEWORKS_ENABLE_D3D11 D3D11Objects _11; #endif |