summaryrefslogtreecommitdiffstats
path: root/Common/interface
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2021-03-05 04:30:35 +0000
committerassiduous <assiduous@diligentgraphics.com>2021-03-19 00:38:15 +0000
commitcbc82d73874ea1422c295d44246138a820664e91 (patch)
tree8f56ee4eb24b25122d882f6543a62f50b8cd0d31 /Common/interface
parentRefactored passing template arguments to base classes (diff)
downloadDiligentCore-cbc82d73874ea1422c295d44246138a820664e91.tar.gz
DiligentCore-cbc82d73874ea1422c295d44246138a820664e91.zip
Moved static variable cache and managers to PipelineResourceSignatureBase
Diffstat (limited to 'Common/interface')
-rw-r--r--Common/interface/FixedLinearAllocator.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Common/interface/FixedLinearAllocator.hpp b/Common/interface/FixedLinearAllocator.hpp
index c7718ed5..2c47ccc0 100644
--- a/Common/interface/FixedLinearAllocator.hpp
+++ b/Common/interface/FixedLinearAllocator.hpp
@@ -62,6 +62,10 @@ public:
m_ReservedSize {Other.m_ReservedSize },
m_CurrAlignment{Other.m_CurrAlignment},
m_pAllocator {Other.m_pAllocator }
+#if DILIGENT_DEBUG
+ , m_DbgCurrAllocation{Other.m_DbgCurrAllocation}
+ , m_DbgAllocations{std::move(Other.m_DbgAllocations)}
+#endif
// clang-format on
{
Other.Reset();