PhysicsLock.cpp 246 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #include <Jolt.h>
  4. #include <Physics/PhysicsLock.h>
  5. #ifdef JPH_ENABLE_ASSERTS
  6. namespace JPH {
  7. thread_local uint32 PhysicsLock::sLockedMutexes = 0;
  8. } // JPH
  9. #endif