diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-07-20 14:57:03 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-07-20 14:57:03 +0000 |
| commit | b6f648097fc6862a1e6cd24abcd7a8ef5b940aff (patch) | |
| tree | 36ac40d5939a7f16f74069ec30e064ba61c256f5 /Graphics/GraphicsEngineD3DBase | |
| parent | Fixed D3D11 fences on Windows8.1 (diff) | |
| download | DiligentCore-b6f648097fc6862a1e6cd24abcd7a8ef5b940aff.tar.gz DiligentCore-b6f648097fc6862a1e6cd24abcd7a8ef5b940aff.zip | |
Fixed build bug with RenderDeviceD3DBase
Diffstat (limited to 'Graphics/GraphicsEngineD3DBase')
| -rw-r--r-- | Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h index e94d3cfe..fb2ab26c 100644 --- a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h +++ b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.h @@ -47,8 +47,9 @@ public: size_t ShaderObjSize, size_t SamplerObjSize, size_t PSOSize, - size_t SRBSize) : - RenderDeviceBase<BaseInterface>(pRefCounters, RawMemAllocator, NumDeferredContexts, TextureObjSize, TexViewObjSize, BufferObjSize, BuffViewObjSize, ShaderObjSize, SamplerObjSize, PSOSize, SRBSize) + size_t SRBSize, + size_t FenceSize) : + RenderDeviceBase<BaseInterface>(pRefCounters, RawMemAllocator, NumDeferredContexts, TextureObjSize, TexViewObjSize, BufferObjSize, BuffViewObjSize, ShaderObjSize, SamplerObjSize, PSOSize, SRBSize, FenceSize) { // Flag texture formats always supported in D3D11 and D3D12 |
