From cbc82d73874ea1422c295d44246138a820664e91 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 4 Mar 2021 20:30:35 -0800 Subject: Moved static variable cache and managers to PipelineResourceSignatureBase --- Common/interface/FixedLinearAllocator.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Common/interface') 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(); -- cgit v1.2.3