diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-09-21 03:34:00 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-09-21 03:34:00 +0000 |
| commit | 7accb78ce40aa9aa50cd50e5adbf30f39d06116b (patch) | |
| tree | 91436125e571515125ad6df33afa9b121dbc2a3f /Graphics/GraphicsEngineD3D11 | |
| parent | Fixed 32-bit windows build (diff) | |
| download | DiligentCore-7accb78ce40aa9aa50cd50e5adbf30f39d06116b.tar.gz DiligentCore-7accb78ce40aa9aa50cd50e5adbf30f39d06116b.zip | |
Refactored device object release queues
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
| -rw-r--r-- | Graphics/GraphicsEngineD3D11/include/RenderDeviceD3D11Impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineD3D11/include/RenderDeviceD3D11Impl.h b/Graphics/GraphicsEngineD3D11/include/RenderDeviceD3D11Impl.h index 4148577f..18744e07 100644 --- a/Graphics/GraphicsEngineD3D11/include/RenderDeviceD3D11Impl.h +++ b/Graphics/GraphicsEngineD3D11/include/RenderDeviceD3D11Impl.h @@ -66,6 +66,9 @@ public: virtual void CreateTextureFromD3DResource(ID3D11Texture2D* pd3d11Texture, ITexture** ppTexture)override final; virtual void CreateTextureFromD3DResource(ID3D11Texture3D* pd3d11Texture, ITexture** ppTexture)override final; + size_t GetCommandQueueCount()const { return 1; } + Uint64 GetCommandQueueMask()const { return Uint64{1};} + private: virtual void TestTextureFormat( TEXTURE_FORMAT TexFormat )override final; |
