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/FFT_Simulation.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/FFT_Simulation.h')
| -rw-r--r-- | src/FFT_Simulation.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/FFT_Simulation.h b/src/FFT_Simulation.h index b06b206..c006706 100644 --- a/src/FFT_Simulation.h +++ b/src/FFT_Simulation.h @@ -53,8 +53,6 @@ public: virtual ~NVWaveWorks_FFT_Simulation() {}; - virtual HRESULT initD3D9(IDirect3DDevice9* pD3DDevice) = 0; - virtual HRESULT initD3D10(ID3D10Device* pD3DDevice) = 0; virtual HRESULT initD3D11(ID3D11Device* pD3DDevice) = 0; virtual HRESULT initGnm() { return S_FALSE; }; virtual HRESULT initGL2(void* /*pGLContext*/) { return S_FALSE; }; @@ -78,8 +76,6 @@ public: virtual gfsdk_U64 getDisplacementMapVersion() const = 0; // Returns the kickID of the last time the displacement map was updated // NB: None of these AddRef's the underlying D3D resource - virtual LPDIRECT3DTEXTURE9 GetDisplacementMapD3D9() = 0; - virtual ID3D10ShaderResourceView** GetDisplacementMapD3D10() = 0; virtual ID3D11ShaderResourceView** GetDisplacementMapD3D11() = 0; virtual sce::Gnm::Texture* GetDisplacementMapGnm() { return NULL; } virtual GLuint GetDisplacementMapGL2() = 0; |