frameAllocator.cpp 519 B

123456789101112131415
  1. //-----------------------------------------------------------------------------
  2. // Copyright (C) 2024 tgemit contributors.
  3. // See AUTHORS file and git repository for contributor information.
  4. //
  5. // SPDX-License-Identifier: MIT
  6. //-----------------------------------------------------------------------------
  7. #include "core/frameAllocator.h"
  8. thread_local ManagedAlignedBufferAllocator<U32> FrameAllocator::smFrameAllocator;
  9. #ifdef TORQUE_MEM_DEBUG
  10. thread_local dsize_t FrameAllocator::smMaxAllocationBytes = 0;
  11. #endif