diff options
Diffstat (limited to 'LibOVR/Src/OVR_CAPI_D3D.h')
-rw-r--r-- | LibOVR/Src/OVR_CAPI_D3D.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/LibOVR/Src/OVR_CAPI_D3D.h b/LibOVR/Src/OVR_CAPI_D3D.h index 75c383a..112525d 100644 --- a/LibOVR/Src/OVR_CAPI_D3D.h +++ b/LibOVR/Src/OVR_CAPI_D3D.h @@ -122,9 +122,8 @@ struct ovrD3D9ConfigData // General device settings. ovrRenderAPIConfigHeader Header; - IDirect3DDevice9 * pDevice; - ///ID3D10RenderTargetView* pBackBufferRT; - ///IDXGISwapChain* pSwapChain; + IDirect3DDevice9* pDevice; + IDirect3DSwapChain9* pSwapChain; }; union ovrD3D9Config @@ -138,8 +137,7 @@ struct ovrD3D9TextureData { // General device settings. ovrTextureHeader Header; - IDirect3DTexture9 * pTexture; - ///ID3D10ShaderResourceView* pSRView; + IDirect3DTexture9* pTexture; }; union ovrD3D9Texture @@ -148,9 +146,6 @@ union ovrD3D9Texture ovrD3D9TextureData D3D9; }; - - #endif - #endif // OVR_CAPI_h |