diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-10-30 21:54:48 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-10-30 21:54:48 +0000 |
| commit | 9a8133811d75501ae3d6e4a5c58f821fb38f8e5d (patch) | |
| tree | 73aad6f7f683f0658a27c4cf294fc186f4ac407c /Graphics/GraphicsEngineD3D12 | |
| parent | Merge branch 'master' (diff) | |
| download | DiligentCore-9a8133811d75501ae3d6e4a5c58f821fb38f8e5d.tar.gz DiligentCore-9a8133811d75501ae3d6e4a5c58f821fb38f8e5d.zip | |
Fixed clang compiler warning
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
| -rw-r--r-- | Graphics/GraphicsEngineD3D12/src/PipelineStateD3D12Impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/PipelineStateD3D12Impl.cpp b/Graphics/GraphicsEngineD3D12/src/PipelineStateD3D12Impl.cpp index 9cc7faa5..405f6d4b 100644 --- a/Graphics/GraphicsEngineD3D12/src/PipelineStateD3D12Impl.cpp +++ b/Graphics/GraphicsEngineD3D12/src/PipelineStateD3D12Impl.cpp @@ -286,7 +286,7 @@ void GetShaderIdentifiers(ID3D12StateObject* pSO, PipelineStateD3D12Impl::ShaderStageInfo::ShaderStageInfo(SHADER_TYPE _Type, ShaderD3D12Impl* _pShader) : Type{_Type}, - Shaders{{_pShader}} + Shaders{_pShader} { } |
