summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-11-28 08:05:10 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-11-28 08:05:10 +0000
commitbcfcc981ffd4fdfdf3313e90557b3a4782498caa (patch)
tree2c89497460f7e7fbd3adfc6b2d56607bf54ae801 /Graphics/GraphicsEngineD3D12
parentAdded format validation script stub on Mac (diff)
downloadDiligentCore-bcfcc981ffd4fdfdf3313e90557b3a4782498caa.tar.gz
DiligentCore-bcfcc981ffd4fdfdf3313e90557b3a4782498caa.zip
Fixed leftover issues from clang-formatting
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/src/RootSignature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp b/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp
index d96194ce..26134228 100644
--- a/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp
+++ b/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp
@@ -478,7 +478,7 @@ void RootSignature::Finalize(ID3D12Device* pd3d12Device)
auto TotalParams = m_RootParams.GetNumRootTables() + m_RootParams.GetNumRootViews();
- std::vector<D3D12_ROOT_PARAMETER, STDAllocatorRawMem<D3D12_ROOT_PARAMETER>> D3D12Parameters{TotalParams, D3D12_ROOT_PARAMETER(), STD_ALLOCATOR_RAW_MEM(D3D12_ROOT_PARAMETER, GetRawAllocator(), "Allocator for vector<D3D12_ROOT_PARAMETER>")};
+ std::vector<D3D12_ROOT_PARAMETER, STDAllocatorRawMem<D3D12_ROOT_PARAMETER>> D3D12Parameters(TotalParams, D3D12_ROOT_PARAMETER(), STD_ALLOCATOR_RAW_MEM(D3D12_ROOT_PARAMETER, GetRawAllocator(), "Allocator for vector<D3D12_ROOT_PARAMETER>"));
for (Uint32 rt = 0; rt < m_RootParams.GetNumRootTables(); ++rt)
{
const auto& RootTable = m_RootParams.GetRootTable(rt);