summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsTools
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsTools')
-rw-r--r--Graphics/GraphicsTools/src/TextureUploaderGL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsTools/src/TextureUploaderGL.cpp b/Graphics/GraphicsTools/src/TextureUploaderGL.cpp
index 2b5c3a7f..359d1a8e 100644
--- a/Graphics/GraphicsTools/src/TextureUploaderGL.cpp
+++ b/Graphics/GraphicsTools/src/TextureUploaderGL.cpp
@@ -45,8 +45,8 @@ public:
UploadBufferGL(IReferenceCounters* pRefCounters, const UploadBufferDesc& Desc) :
// clang-format off
UploadBufferBase{pRefCounters, Desc},
- m_SubresourceOffsets{Desc.MipLevels * Desc.ArraySize + 1},
- m_SubresourceStrides{Desc.MipLevels * Desc.ArraySize }
+ m_SubresourceOffsets(Desc.MipLevels * Desc.ArraySize + 1),
+ m_SubresourceStrides(Desc.MipLevels * Desc.ArraySize )
// clang-format on
{
const auto& FmtAttribs = GetTextureFormatAttribs(Desc.Format);