diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-11-28 18:00:29 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-11-28 18:00:29 +0000 |
| commit | 094e13588e6029354386f31e49b795a7fada6a58 (patch) | |
| tree | f0dd43f74731c1f5ff37699de6d5456026a2fefc /Graphics/GraphicsTools | |
| parent | Fixed leftover issues from clang-formatting (diff) | |
| download | DiligentCore-094e13588e6029354386f31e49b795a7fada6a58.tar.gz DiligentCore-094e13588e6029354386f31e49b795a7fada6a58.zip | |
Fixed few vector initialization issues
Diffstat (limited to 'Graphics/GraphicsTools')
| -rw-r--r-- | Graphics/GraphicsTools/include/TextureUploaderBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsTools/include/TextureUploaderBase.h b/Graphics/GraphicsTools/include/TextureUploaderBase.h index 5481b1a2..6026d60b 100644 --- a/Graphics/GraphicsTools/include/TextureUploaderBase.h +++ b/Graphics/GraphicsTools/include/TextureUploaderBase.h @@ -53,7 +53,7 @@ public: // clang-format off ObjectBase<IUploadBuffer>{pRefCounters}, m_Desc {Desc}, - m_MappedData {m_Desc.ArraySize * m_Desc.MipLevels} + m_MappedData (m_Desc.ArraySize * m_Desc.MipLevels) // clang-format on { } |
