summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-11-28 18:00:29 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-11-28 18:00:29 +0000
commit094e13588e6029354386f31e49b795a7fada6a58 (patch)
treef0dd43f74731c1f5ff37699de6d5456026a2fefc /Graphics/GraphicsEngineD3D11
parentFixed leftover issues from clang-formatting (diff)
downloadDiligentCore-094e13588e6029354386f31e49b795a7fada6a58.tar.gz
DiligentCore-094e13588e6029354386f31e49b795a7fada6a58.zip
Fixed few vector initialization issues
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
-rw-r--r--Graphics/GraphicsEngineD3D11/src/PipelineStateD3D11Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D11/src/PipelineStateD3D11Impl.cpp b/Graphics/GraphicsEngineD3D11/src/PipelineStateD3D11Impl.cpp
index c0df34de..92939de8 100644
--- a/Graphics/GraphicsEngineD3D11/src/PipelineStateD3D11Impl.cpp
+++ b/Graphics/GraphicsEngineD3D11/src/PipelineStateD3D11Impl.cpp
@@ -43,7 +43,7 @@ PipelineStateD3D11Impl::PipelineStateD3D11Impl(IReferenceCounters* pRefCoun
PipelineDesc
},
m_SRBMemAllocator{GetRawAllocator()},
- m_StaticSamplers {STD_ALLOCATOR_RAW_MEM(StaticSamplerInfo, GetRawAllocator(), "Allocator for vector<StaticSamplerInfo>")}
+ m_StaticSamplers (STD_ALLOCATOR_RAW_MEM(StaticSamplerInfo, GetRawAllocator(), "Allocator for vector<StaticSamplerInfo>"))
// clang-format on
{
if (PipelineDesc.IsComputePipeline)